<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Onomastico del Giorno - Plugin Styles */
/* Responsive design with #DD3333 accent color */

.onomastico-oggi-widget {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

/* Header Section */
.onomastico-header {
  background: white;
  color: #333;
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 3px solid #DD3333;
}

.onomastico-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #DD3333;
}

.onomastico-date {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

/* Content Section */
.onomastico-content {
  padding: 1.5rem 1rem;
  background: #f9f9f9;
}

.onomastico-saints {
  margin: 0;
}

.onomastico-saints-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.onomastico-saint-item {
  background: white;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid #DD3333;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onomastico-saint-item:hover {
  transform: translateX(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.onomastico-saint-item:last-child {
  margin-bottom: 0;
}

.onomastico-no-saints {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 1rem;
  background: white;
  border-radius: 4px;
  margin: 0;
}

/* Navigation Footer */
.onomastico-footer {
  padding: 1rem;
  background: white;
  border-top: 1px solid #e0e0e0;
}

.onomastico-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.onomastico-nav-btn {
  background: #DD3333;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 40px;
}

.onomastico-nav-btn:hover {
  background: #bb2929;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(221, 51, 51, 0.3);
}

.onomastico-nav-btn:focus {
  outline: 3px solid rgba(221, 51, 51, 0.3);
  outline-offset: 2px;
}

.onomastico-nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(221, 51, 51, 0.3);
}

.onomastico-nav-btn.onomastico-today {
  background: #666;
  font-weight: 600;
}

.onomastico-nav-btn.onomastico-today:hover {
  background: #555;
}

.nav-arrow {
  font-size: 1.1rem;
  font-weight: bold;
}

/* Loading State */
.onomastico-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.onomastico-loading span {
  background: #DD3333;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Responsive Design */

/* Small screens (mobile phones) */
@media (max-width: 480px) {
  .onomastico-oggi-widget {
    margin: 0.5rem 0;
    border-radius: 6px;
  }
  
  .onomastico-header {
    padding: 1rem 0.75rem;
  }
  
  .onomastico-title {
    font-size: 1.3rem;
  }
  
  .onomastico-date {
    font-size: 0.9rem;
  }
  
  .onomastico-content {
    padding: 1rem 0.75rem;
  }
  
  .onomastico-saint-item {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .onomastico-footer {
    padding: 0.75rem;
  }
  
  .onomastico-navigation {
    gap: 0.3rem;
  }
  
  .onomastico-nav-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-height: 36px;
  }
  
  .nav-arrow {
    font-size: 1rem;
  }
}

/* Medium screens (tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .onomastico-oggi-widget {
    margin: 0.75rem 0;
  }
  
  .onomastico-header {
    padding: 1.25rem 1rem;
  }
  
  .onomastico-title {
    font-size: 1.4rem;
  }
  
  .onomastico-content {
    padding: 1.25rem 1rem;
  }
  
  .onomastico-saint-item {
    padding: 0.7rem 0.9rem;
  }
}

/* Large screens (desktops) */
@media (min-width: 769px) {
  .onomastico-oggi-widget {
    margin: 1rem 0;
  }
  
  .onomastico-header {
    padding: 1.5rem 1.5rem;
  }
  
  .onomastico-title {
    font-size: 1.6rem;
  }
  
  .onomastico-content {
    padding: 1.5rem 1.5rem;
  }
  
  .onomastico-saint-item {
    padding: 0.8rem 1.2rem;
  }
  
  .onomastico-footer {
    padding: 1.25rem 1.5rem;
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .onomastico-navigation {
    gap: 0.75rem;
  }
  
  .onomastico-nav-btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .onomastico-oggi-widget {
    border: 2px solid #000;
  }
  
  .onomastico-saint-item {
    border-left-width: 6px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .onomastico-saint-item,
  .onomastico-nav-btn,
  .onomastico-loading span {
    transition: none;
    animation: none;
  }
  
  .onomastico-saint-item:hover {
    transform: none;
  }
  
  .onomastico-nav-btn:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .onomastico-oggi-widget {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .onomastico-navigation,
  .onomastico-loading {
    display: none;
  }
  
  .onomastico-header {
    background: #DD3333 !important;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    color: white !important;
  }
  
  .onomastico-title {
    color: white !important;
  }
  
  .onomastico-date {
    color: white !important;
  }
}

/* Focus improvements for accessibility */
.onomastico-nav-btn:focus-visible {
  outline: 3px solid #DD3333;
  outline-offset: 2px;
}

/* Better support for dark mode (if theme supports it) */
@media (prefers-color-scheme: dark) {
  .onomastico-oggi-widget {
    background: #1a1a1a;
    border-color: #333;
  }
  
  .onomastico-header {
    background: #1a1a1a;
    border-bottom-color: #DD3333;
  }
  
  .onomastico-title {
    color: #DD3333;
  }
  
  .onomastico-date {
    color: #ccc;
  }
  
  .onomastico-content {
    background: #2a2a2a;
  }
  
  .onomastico-saint-item {
    background: #333;
    color: #fff;
  }
  
  .onomastico-no-saints {
    background: #333;
    color: #ccc;
  }
  
  .onomastico-footer {
    background: #1a1a1a;
    border-top-color: #333;
  }
}</pre></body></html>