/* Flight Schedule Styles (cleaned up) */

body, html {
    background-color: #f4f6f9;
    min-height: 100%;
}
.wrapper,
.content-wrapper {
    background-color: #f4f6f9;
}
.content {
    margin-top: 80px;
    padding: 20px;
}
.month-header {
    background-color: #0066b2;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.flight-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.flight-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: none;
    border: none;
    transition: background-color 0.2s;
    padding: 12px 8px;
}
.flight-item:hover {
    background-color: #f8f9fa;
}
.flight-item:last-child {
    margin-bottom: 0;
}
.agent-info {
    margin-bottom: 20px;
}
.agent-code {
    font-weight: bold;
    color: #0066b2;
}
.low-seats {
    color: white;
    background-color: #dc3545 !important;
}
.badge {
    font-size: 12px;
    padding: 4px 7px;
}
.share-flight {
    color: #007bff;
    font-size: 16px;
    margin-left: auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
    height: 24px;
}
.share-flight:hover {
    color: #0056b3;
}

/* Icon and text wrapper styles */
.icon-text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    margin-right: 4px;
}

.text-wrapper {
    display: flex;
    align-items: center;
}

.section-icon {
    height: 18px;
    vertical-align: middle;
}

.share-flight i { color: #007bff !important; }  /* Share - blue */

/* Responsive grid for flight-item */
@media (max-width: 576px) {
    .flight-item {
        padding: 8px 2px;
    }
    .flight-item .row {
        font-size: 12px;
    }
    /* Stack icons above text on mobile */
    .icon-text-wrapper {
        flex-direction: column;
        justify-content: center;
    }
    .icon-wrapper {
        margin-right: 0;
        margin-bottom: 4px;
    }
    .text-wrapper {
        justify-content: center;
    }
    .section-icon {
        height: 16px;
        margin-bottom: 2px;
    }
    .badge {
        font-size: 10px;
        padding: 2px 4px;
    }
    .flight-item .d-inline-block {
        display: block !important;
        font-size: 11px;
    }
    .flight-item strong {
        display: block;
        font-size: 11px;
    }
    .airline-code {
        font-size: 11px;
    }
    .share-flight i {
        font-size: 14px;
    }
}
