/* ==========================================================================
   Easy BS - Styles Principaux
   Single Page Application PWA pour la Police Municipale
   ========================================================================== */

:root {
  /* Palette Mode Clair */
  --bg-main: #f1f5f9;
  --bg-card: #ffffff;
  --bg-surface: #ffffff;
  --bg-hover: #f8fafc;
  --bg-muted: #e2e8f0;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #cbd5e1;
  --border-subtle: #e2e8f0;

  /* Accents & Couleurs de Grade */
  --police-blue: #1e3a8a;
  --police-blue-light: #2563eb;
  --police-accent: #3b82f6;
  --gold: #d97706;
  --gold-bg: #fef3c7;
  --silver: #64748b;
  --silver-bg: #f1f5f9;
  --emerald: #059669;
  --emerald-bg: #d1fae5;
  --amber: #ea580c;
  --amber-bg: #ffedd5;
  --danger: #dc2626;
  --danger-bg: #fee2e2;

  /* Badges Équipements */
  --badge-pie: #f59e0b;
  --badge-bat: #6366f1;
  --badge-arm: #ef4444;
  --badge-gaz: #06b6d4;
  --badge-cam: #8b5cf6;
  --badge-vtt: #10b981;

  /* Ombrages & Transitions */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  /* Palette Mode Sombre */
  --bg-main: #0b1120;
  --bg-card: #1e293b;
  --bg-surface: #1e293b;
  --bg-hover: #334155;
  --bg-muted: #334155;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --border-color: #334155;
  --border-subtle: #1e293b;

  --police-blue: #1d4ed8;
  --police-blue-light: #3b82f6;
  --gold-bg: #451a03;
  --silver-bg: #1e293b;
  --emerald-bg: #064e3b;
  --amber-bg: #431407;
  --danger-bg: #450a0a;

  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Barre de Navigation */
.app-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--police-blue-light);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Indicateur de Statut DB */
.db-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-muted);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: var(--transition);
}

.db-status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.db-status-badge.online {
  background: var(--emerald-bg);
  color: var(--emerald);
  border-color: rgba(5, 150, 105, 0.2);
}
.db-status-badge.online .dot {
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.db-status-badge.local {
  background: var(--amber-bg);
  color: var(--amber);
  border-color: rgba(234, 88, 12, 0.2);
}
.db-status-badge.local .dot {
  background-color: var(--amber);
}

/* Boutons & Contrôles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--police-blue) 0%, var(--police-blue-light) 100%);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

.btn-generate {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}
.btn-generate:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
}
.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--text-muted);
}

.btn-danger {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: rgba(220, 38, 38, 0.3);
}
.btn-danger:hover {
  background: var(--danger);
  color: #ffffff;
}

.btn-icon {
  padding: 0.55rem;
  border-radius: var(--radius-md);
  background: var(--bg-muted);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-icon:hover {
  background: var(--bg-hover);
}

/* Barre d'onglets (Navigation SPA) */
.nav-tabs-wrapper {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.nav-tabs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar {
  display: none;
}

.tab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-link:hover {
  color: var(--police-blue-light);
}

.tab-link.active {
  color: var(--police-blue-light);
  border-bottom-color: var(--police-blue-light);
}

/* Conteneur Principal */
.main-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  flex: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.25s ease-in-out;
}
.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   VUE BULLETINS (ÉQUIPAGES 4 JOURS & DRAG & DROP)
   ========================================================================== */
.bulletins-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.days-selector {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-muted);
  padding: 0.25rem;
  border-radius: var(--radius-md);
}

.day-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.day-btn.active {
  background: var(--bg-card);
  color: var(--police-blue-light);
  box-shadow: var(--shadow-sm);
}

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

.crew-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.crew-card.vehicle {
  border-top: 4px solid var(--police-blue-light);
}

.crew-card.pedestrian {
  border-top: 4px solid var(--emerald);
}

.crew-card.admin {
  border-top: 4px solid var(--gold);
}

.crew-card-header {
  padding: 0.85rem 1rem;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crew-title-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crew-icon {
  font-size: 1.25rem;
}

.crew-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.crew-code {
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--bg-muted);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.crew-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crew-count-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  color: var(--text-secondary);
}

.crew-count-badge.valid {
  background: var(--emerald-bg);
  color: var(--emerald);
}

.crew-count-badge.invalid {
  background: var(--danger-bg);
  color: var(--danger);
}

.crew-pie-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--gold-bg);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Zone de Drag & Drop */
.crew-dropzone {
  padding: 0.85rem;
  flex: 1;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: var(--transition);
}

.crew-dropzone.drag-over {
  background: rgba(37, 99, 235, 0.08);
  border: 2px dashed var(--police-blue-light);
  border-radius: var(--radius-md);
}

.crew-empty-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  padding: 2rem 1rem;
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
}

/* Fiche Agent dans un Équipage */
.crew-agent-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  cursor: grab;
  transition: var(--transition);
  position: relative;
}

.crew-agent-item:hover {
  border-color: var(--police-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.crew-agent-item.is-dragging {
  opacity: 0.4;
  cursor: grabbing;
  transform: scale(0.96) rotate(1deg);
}

.agent-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}

.agent-role-tag.chef-bord {
  background: #fef08a;
  color: #854d0e;
  border: 1px solid #facc15;
}

.agent-role-tag.conducteur {
  background: #e0e7ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

.agent-role-tag.equipier {
  background: var(--bg-muted);
  color: var(--text-secondary);
}

.agent-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.agent-status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.agent-status-pill.chef {
  background: var(--gold-bg);
  color: var(--gold);
}
.agent-status-pill.adjoint {
  background: #e0f2fe;
  color: #0369a1;
}
.agent-status-pill.titulaire {
  background: var(--emerald-bg);
  color: var(--emerald);
}
.agent-status-pill.stagiaire {
  background: var(--amber-bg);
  color: var(--amber);
}

/* Badges d'équipement */
.equip-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.equip-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.equip-badge.pie { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.equip-badge.bat { background: #e0e7ff; color: #4338ca; border: 1px solid #c7d2fe; }
.equip-badge.arm { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.equip-badge.gaz { background: #cffafe; color: #0e7490; border: 1px solid #a5f3fc; }
.equip-badge.cam { background: #ede9fe; color: #6d28d9; border: 1px solid #ddd6fe; }
.equip-badge.vtt { background: #d1fae5; color: #047857; border: 1px solid #a7f3d0; }

.equip-badge.off {
  background: var(--bg-muted);
  color: var(--text-muted);
  opacity: 0.4;
  text-decoration: line-through;
}

/* Avertissements de Règle en Direct */
.crew-warning-box {
  margin-top: auto;
  padding: 0.65rem 0.85rem;
  background: var(--danger-bg);
  border-top: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--danger);
  font-size: 0.775rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   GESTION DES AGENTS
   ========================================================================== */
.agents-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 500px;
}

.search-input, .filter-select {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.search-input {
  flex: 1;
}

.search-input:focus, .filter-select:focus {
  border-color: var(--police-blue-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.agents-table-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.agents-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.agents-table th {
  background: var(--bg-hover);
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.agents-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.agents-table tr:hover {
  background: var(--bg-hover);
}

/* Matrice Absences */
.absence-matrix-table {
  width: 100%;
  border-collapse: collapse;
}

.absence-matrix-table th, .absence-matrix-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.absence-matrix-table th:first-child, .absence-matrix-table td:first-child {
  text-align: left;
}

.absence-checkbox-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--emerald-bg);
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.absence-checkbox-label.is-absent {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: rgba(220, 38, 38, 0.2);
}

/* Modale */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
  animation: modalFadeIn 0.2s ease-out;
}

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

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-select {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--police-blue-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.checkbox-card:hover {
  border-color: var(--police-blue-light);
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  background: var(--bg-hover);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 200;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 400px;
}

.toast.success {
  background: #064e3b;
  color: #ecfdf5;
  border-color: #059669;
}

.toast.error {
  background: #7f1d1d;
  color: #fef2f2;
  border-color: #dc2626;
}

.toast.info {
  background: #1e3a8a;
  color: #eff6ff;
  border-color: #3b82f6;
}

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

/* ==========================================================================
   FORMAT D'IMPRESSION OFFICIEL (@media print)
   Génère un Bulletin de Service A4 officiel pour affichage en poste
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt;
  }

  .app-header,
  .nav-tabs-wrapper,
  .bulletins-toolbar,
  .btn,
  .toast-container,
  .modal-backdrop {
    display: none !important;
  }

  .main-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .tab-content {
    display: none !important;
  }

  .tab-content#tab-bulletins {
    display: block !important;
  }

  .print-official-header {
    display: block !important;
    border-bottom: 2px solid #000000;
    padding-bottom: 12px;
    margin-bottom: 20px;
    text-align: center;
  }

  .crews-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    page-break-inside: avoid;
  }

  .crew-card {
    border: 2px solid #000000 !important;
    box-shadow: none !important;
    background: #ffffff !important;
    page-break-inside: avoid;
  }

  .crew-card-header {
    background: #f1f5f9 !important;
    border-bottom: 2px solid #000000 !important;
    color: #000000 !important;
  }

  .crew-agent-item {
    border: 1px solid #94a3b8 !important;
    background: #ffffff !important;
    color: #000000 !important;
    padding: 6px !important;
    margin-bottom: 6px !important;
  }

  .print-footer-visas {
    display: flex !important;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #000000;
    page-break-inside: avoid;
  }

  .visa-box {
    width: 45%;
    border: 1px solid #000000;
    padding: 10px;
    height: 90px;
    font-size: 9pt;
  }
}

.print-official-header,
.print-footer-visas {
  display: none;
}
