/* =============================================
   LAeroport — Page Horaires
   ============================================= */

/* ─── Hero ─────────────────────────────────── */
.horaires-hero {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff;
  padding: 48px 24px 32px;
}

.horaires-hero h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 12px 0 8px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: .8;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ─── Tabs ────────────────────────────────── */
.horaires-body {
  padding: 32px 24px 64px;
}

.horaires-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.htab {
  padding: 10px 24px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .15s;
}

.htab.active {
  color: #1a237e;
  border-bottom-color: #1a237e;
}

.htab:hover {
  color: #333;
}

/* ─── Tableau ─────────────────────────────── */
.dest-table-wrap {
  overflow-x: auto;
}

.dest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dest-table th {
  text-align: left;
  padding: 12px 16px;
  background: #f5f5f5;
  color: #555;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid #e0e0e0;
}

.dest-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.dest-table tr:hover td {
  background: #fafafa;
}

.dest-table tr.delayed td {
  background: #fff8e1;
}

/* ─── Status badges ───────────────────────── */
.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: #e8eaf6;
  color: #3949ab;
}

.status.ok {
  background: #e8f5e9;
  color: #2e7d32;
}

.status.ko {
  background: #fbe9e7;
  color: #c62828;
}

/* ─── Fallback ────────────────────────────── */
.fallback-note {
  background: #fff8e1;
  border-left: 3px solid #ffa000;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.empty {
  text-align: center;
  color: #999;
  padding: 40px;
}

/* ─── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .horaires-hero {
    padding: 32px 16px 24px;
  }
  .horaires-body {
    padding: 20px 16px 40px;
  }
  .dest-table th,
  .dest-table td {
    padding: 8px 10px;
    font-size: 13px;
  }
}
