body {
  font-family: 'Montserrat', sans-serif;
}

.flight-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.flight-timeline {
  position: relative;
}

.flight-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.status-confirmed {
  background: #e6fffa;
  color: #319795;
}

.flight-dot {
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.flight-dot.departure {
  top: 0;
}

.flight-dot.arrival {
  bottom: 0;
}

.tab-active {
  color: #3b82f6;
  border-bottom: 2px solid #3b82f6;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.history-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}
