.airlabs-board {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Таблица */
.airlabs-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Строка */
.airlabs-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 15px;
}

.airlabs-row.header {
    background: #e9eef7;
    font-weight: 600;
    box-shadow: none;
}

/* Колонки */
.col {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Статус — выделяем */
.col.status {
    font-weight: 600;
    text-transform: capitalize;
}

/* Адаптивность */
@media (max-width: 900px) {
    .airlabs-row {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "flight airline status"
            "dep dep arr";
        row-gap: 6px;
        padding: 12px 14px;
    }

    .col.flight { grid-area: flight; }
    .col.airline { grid-area: airline; }
    .col.status { grid-area: status; text-align: right; }

    .col.dep { grid-area: dep; opacity: 0.8; }
    .col.arr { grid-area: arr; opacity: 0.8; text-align: right; }
}

@media (max-width: 600px) {
    .airlabs-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "flight status"
            "airline airline"
            "dep arr";
        font-size: 14px;
    }

    .col.airline { text-align: left; }
    .col.arr { text-align: right; }
}

@media (max-width: 420px) {
    .airlabs-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "flight"
            "airline"
            "dep"
            "arr"
            "status";
        padding: 10px 12px;
    }

    .col {
        white-space: normal;
    }

    .col.status {
        margin-top: 6px;
        font-size: 15px;
        text-align: left;
    }
}

.status-chip {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}

/* Цвета */
.chip-green {
    background: #2ecc71;
}

.chip-blue {
    background: #3498db;
}

.chip-yellow {
    background: #f1c40f;
    color: #000;
}

.chip-red {
    background: #e74c3c;
}
