.flight-card {
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.flight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.terminal-badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
}

.flight-status {
  font-weight: bold;
}

.completed-icon {
  color: #28a745;
}

.flight-details-container {
  background-color: #27262e;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.airport-code {
  font-size: 2rem;
  font-weight: bold;
}

.flight-route {
  position: relative;
  padding: 2rem 0;
}

.flight-route-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: #007bff;
  z-index: 1;
}

.flight-route-dot {
  width: 12px;
  height: 12px;
  background-color: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.flight-route-dot.origin {
  left: 15%;
}

.flight-route-dot.destination {
  right: 15%;
}

.last-updated {
  font-size: 0.8rem;
  color: #6c757d;
}
