/* ==============================================================================
   CALENDARIO.GRATIS - STYLESHEET PRINCIPAL (JAMSTACK HIGH PERFORMANCE)
   ============================================================================== */

:root {
  --bg-primary: #0a0f1d;
  --bg-surface: #11192e;
  --bg-card: #16203c;
  --bg-card-hover: #1c2a4f;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #00e5ff;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --primary: #00e5ff;
  --primary-hover: #38bdf8;
  --festivo-nacional: #ff5c5c;
  --festivo-autonomico: #10b981;
  --festivo-local: #f59e0b;
  --weekend-bg: rgba(255, 255, 255, 0.03);
  
  /* Colores de Estaciones */
  --estacion-primavera: #c6ecc6;
  --estacion-verano: #fff9b3;
  --estacion-otono: #ffd699;
  --estacion-invierno: #99c2ff;
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* ==============================================================================
   HEADER & NAVEGACIÓN
   ============================================================================== */
.site-header {
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--primary);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker select {
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-picker select:hover,
.language-picker select:focus {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.year-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.year-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.year-pill:hover {
  color: #fff;
  background: var(--bg-card-hover);
  border-color: rgba(0, 229, 255, 0.3);
}

.year-pill.active {
  color: #050a12;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* ==============================================================================
   MIGAS DE PAN & HERO
   ============================================================================== */
.main-content {
  flex: 1;
  padding: 24px 0 60px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span.current {
  color: var(--primary);
  font-weight: 600;
}

.hero-section {
  margin-bottom: 28px;
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.region-badge-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.page-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
}

/* ==============================================================================
   FILTROS Y SELECTORES INTERACTIVOS
   ============================================================================== */
.filters-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-item label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.filter-item select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-item select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

.filter-item select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.toggles-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.toggle-label:hover {
  color: #fff;
}

.toggle-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.toggle-select-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toggle-select-group label {
  color: var(--text-muted);
  font-weight: 600;
}

.toggle-select-group select {
  padding: 5px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.toggle-select-group select:focus {
  border-color: var(--primary);
}

.legend-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-badge {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.badge-nacional { background-color: var(--festivo-nacional); }
.badge-autonomico { background-color: var(--festivo-autonomico); }
.badge-local { background-color: var(--festivo-local); }
.badge-weekend { background-color: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255,255,255,0.2); }
.badge-puente { border-bottom: 3px solid var(--primary); width: 14px; height: 10px; display: inline-block; }
.badge-fin-largo { border-bottom: 3px solid #a855f7; width: 14px; height: 10px; display: inline-block; }

/* ==============================================================================
   CUADRÍCULA DE MESES (CALENDAR GRID)
   ============================================================================== */
.calendar-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.calendar-wrapper.single-month {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.month-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.month-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.month-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.month-link {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.month-link:hover {
  color: var(--primary);
}

.month-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.month-table th {
  padding: 6px 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-color);
}

.month-table td {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-main);
  height: 52px;
  vertical-align: top;
  position: relative;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.month-table td:hover:not(.empty) {
  outline: 1px solid var(--primary);
  z-index: 10;
}

.cell-day-number {
  display: block;
  font-weight: 600;
  line-height: 1.2;
}

.month-table td.weekend {
  background: var(--weekend-bg);
  color: var(--text-muted);
}

.month-table td.empty {
  visibility: hidden;
  cursor: default;
}

/* ==============================================================================
   CLASES DE ESTACIONES VS FESTIVOS (PRIORIDAD ABSOLUTA DE FESTIVOS)
   ============================================================================== */
body.show-seasons .month-table td.pc:not(.festivo) { background-color: var(--estacion-primavera) !important; color: #0f172a !important; }
body.show-seasons .month-table td.vc:not(.festivo) { background-color: var(--estacion-verano) !important; color: #0f172a !important; }
body.show-seasons .month-table td.oc:not(.festivo) { background-color: var(--estacion-otono) !important; color: #0f172a !important; }
body.show-seasons .month-table td.ic:not(.festivo) { background-color: var(--estacion-invierno) !important; color: #0f172a !important; }

/* Festivos SIEMPRE tienen máxima prioridad */
.month-table td.festivo.nacional,
body.show-seasons .month-table td.festivo.nacional {
  background: var(--festivo-nacional) !important;
  color: #fff !important;
  font-weight: 700;
}

.month-table td.festivo.autonomico,
body.show-seasons .month-table td.festivo.autonomico {
  background: var(--festivo-autonomico) !important;
  color: #050a12 !important;
  font-weight: 700;
}

.month-table td.festivo.local,
body.show-seasons .month-table td.festivo.local {
  background: var(--festivo-local) !important;
  color: #050a12 !important;
  font-weight: 700;
}

/* Fines de semana largos y puentes */
.month-table td.fines_de_semana_largos {
  border-bottom: 3px solid #a855f7 !important;
}

.month-table td.puente {
  border-bottom: 3px solid var(--primary) !important;
}

/* Indicador Cambio de Estación */
.cambio_estacion {
  position: absolute;
  font-size: 10px;
  border: 1px solid #ff5722;
  background-color: #ffeb3b;
  width: 12px;
  height: 12px;
  line-height: 10px;
  left: 2px;
  top: 2px;
  color: #ff5722;
  border-radius: 2px;
  font-weight: 800;
  text-align: center;
}

/* Fases Lunares */
.subcelda.luna {
  display: none;
  width: 16px;
  height: 16px;
  margin: 2px auto 0;
  border-radius: 50%;
  background-color: #5e5e5e;
  background-repeat: no-repeat;
  background-image: url(/assets/img/luna.webp);
  background-size: 73px;
}

body.show-lunar .subcelda.luna {
  display: block;
}

.luna.new { background-position: -1px -1px; }
.luna.waxing_crescent { background-position: -19px -1px; }
.luna.first_quarter { background-position: -37px -1px; }
.luna.waxing_gibbous { background-position: -55px -1px; }
.luna.full { background-position: -1px -19px; }
.luna.waning_gibbous { background-position: -19px -19px; }
.luna.last_quarter { background-position: -37px -19px; }
.luna.waning_crescent { background-position: -55px -19px; }

/* Signos del Zodíaco en Celdas */
.subcelda.zodiaco {
  display: none;
  font-size: 13px;
  line-height: 1;
  margin-top: 2px;
  color: var(--primary);
}

body.show-zodiac .subcelda.zodiaco {
  display: block;
}

/* ==============================================================================
   SECCIONES ADICIONALES: PUENTES, FINES DE SEMANA LARGOS Y ZODÍACO
   ============================================================================== */
.info-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 40px;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.info-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.zodiac-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.zodiac-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.zodiac-symbol {
  font-size: 2rem;
  margin-bottom: 4px;
  display: block;
}

.zodiac-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.zodiac-dates {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==============================================================================
   LISTADO SEMÁNTICO DE FESTIVOS
   ============================================================================== */
.holidays-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.holidays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.holiday-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.holiday-card.nacional { border-left-color: var(--festivo-nacional); }
.holiday-card.autonomico { border-left-color: var(--festivo-autonomico); }
.holiday-card.local { border-left-color: var(--festivo-local); }

.holiday-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.holiday-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.holiday-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
  align-self: flex-start;
}

.holiday-badge-text.nacional { background: rgba(255, 92, 92, 0.2); color: var(--festivo-nacional); }
.holiday-badge-text.autonomico { background: rgba(16, 185, 129, 0.2); color: var(--festivo-autonomico); }
.holiday-badge-text.local { background: rgba(245, 158, 11, 0.2); color: var(--festivo-local); }

/* ==============================================================================
   PÁGINAS LEGALES
   ============================================================================== */
.legal-container {
  max-width: 860px;
}

.legal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin: 24px 0 8px;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ==============================================================================
   MODAL DE DETALLES DEL DÍA (AL PULSAR CUALQUIER FECHA)
   ============================================================================== */
.day-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.day-modal-content {
  background: #0f1624;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(0, 229, 255, 0.2);
  color: #fff;
  position: relative;
  animation: modalFadeIn 0.2s ease-out;
}

.day-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.day-modal-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}

.day-modal-close {
  background: transparent;
  border: none;
  color: #a0aec0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.day-modal-close:hover {
  color: #fff;
}

.day-modal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
}

.day-detail-row.highlight-festivo {
  background: rgba(255, 92, 92, 0.15);
  border-color: var(--festivo-nacional);
}

.day-detail-row .detail-label {
  color: var(--text-muted);
  font-weight: 600;
}

.day-detail-row .detail-val {
  color: #fff;
  text-align: right;
}

/* ==============================================================================
   FOOTER Y MODAL DE REPORTE (FIDELIDAD CON JUANROMERODOMINGUEZ.DEV)
   ============================================================================== */
.footer {
  background: #050a12;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 24px;
  color: var(--text-muted);
  margin-top: auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand .brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.brand-highlight {
  color: var(--primary);
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.author-credit-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.author-credit-text a {
  color: var(--primary);
  font-weight: 600;
}

.author-credit-text a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-links .sep {
  color: var(--text-dim);
}

.btn-report-bug {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-report-bug:hover {
  background: var(--primary);
  color: #050a12;
}

.footer-bottom .disclaimer-text {
  font-size: 11px;
  line-height: 1.6;
  color: #718096;
}

.footer-bottom .disclaimer-text strong {
  color: #a0aec0;
}

/* Report Bug Modal */
.report-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.report-modal-content {
  background: #0f1624;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(0, 229, 255, 0.2);
  color: #fff;
  position: relative;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.report-modal-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
}

.report-modal-close {
  background: transparent;
  border: none;
  color: #a0aec0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.report-modal-close:hover {
  color: #fff;
}

.report-modal-content .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.report-modal-content label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #cbd5e0;
}

.report-modal-content input[type="text"],
.report-modal-content input[type="email"],
.report-modal-content textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(4, 10, 20, 0.8);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.report-modal-content input:focus,
.report-modal-content textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.report-submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.report-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

@media (max-width: 640px) {
  .page-title { font-size: 1.7rem; }
  .filters-card { padding: 16px; }
  .calendar-wrapper { grid-template-columns: 1fr; }
}
