/* Flight Section Styling - Website */

.flights-section {
  margin: 32px 0;
  padding: 24px 0;
}

.flights-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 20px;
  font-family: "Rubik", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Updated Flight Tiles - Matching App Design */
.flights-compact-list {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  padding: 0;
}

.flight-tile {
  border: 1px solid #E8E8E8;
  border-radius: 0;
  margin: 6px 0;
  padding: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "Rubik", sans-serif;
}

.flight-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.flight-time {
  width: 80px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}

.flight-destination {
  width: 80px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}

.flight-details {
  flex: 1;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flight-number {
  font-weight: 600;
  font-size: 13px;
}

.flight-airline {
  font-size: 11px;
  margin-top: 2px;
}

.flight-status {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  border-radius: 0;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flight-tile {
    flex-wrap: wrap;
    gap: 8px;
  }

  .flight-time,
  .flight-destination {
    width: 70px;
    font-size: 12px;
  }

  .flight-details {
    margin-left: 8px;
  }

  .flight-number {
    font-size: 12px;
  }

  .flight-airline {
    font-size: 10px;
  }

  .flight-status {
    font-size: 10px;
    padding: 3px 6px;
  }
}
