﻿.flight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* Minimal spacing between tiles */
}

.flight-tile {
    display: flex;
    flex-direction: column;
    width: 120px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: var(--backcolor);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.flight-number {
    background-color: #ddd;
    color: #007bff;
    font-size: 0.9em; /* Smaller text */
    font-weight: bold;
    text-align: center;
    margin-bottom: 3px;
}

.date-info {
    font-size: 0.8em;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-left: 2px;
}

.time-info {
    font-size: 0.8em;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-left: 2px;
}

.details {
    font-size: 0.7em; /* Smaller text */
    font-weight: 200;
    color: #333;
    text-align: left;
    margin-left: 2px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-top: -2px;
}