/* ========================================
   PASSENGERS SELECTOR - MODERN GRAY/WHITE
   ======================================== */

/* Passengers Overlay */
.passengers-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3000;
}

.passengers-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Passengers Dialog */
.passengers-dialog {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Passengers Header */
.passengers-header {
    background: #212529;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.passengers-back {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.passengers-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.passengers-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* Passengers Body */
.passengers-body {
    padding: 1.5rem;
}

/* Passenger Row */
.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-info {
    flex: 1;
}

.passenger-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.passenger-description {
    font-size: 0.8125rem;
    color: #6c757d;
}

/* Passenger Controls */
.passenger-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.passenger-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    background: white;
    color: #212529;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.passenger-btn:hover:not(:disabled) {
    background: #FFC107;
    border-color: #FFC107;
    color: #212529;
}

.passenger-btn:disabled {
    color: #ced4da;
    cursor: not-allowed;
    border-color: #f8f9fa;
}

.passenger-count {
    font-size: 0.9375rem;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
    color: #212529;
}

/* Children Age Selection */
#childrenAgesContainer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f8f9fa;
}

.child-age-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.child-age-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.child-age-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #212529;
    background: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    min-width: 100px;
    transition: all 0.2s;
}

.child-age-select:hover {
    border-color: #ced4da;
}

.child-age-select:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.1);
}

/* Passengers Footer */
.passengers-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    background: white;
    border-radius: 0 0 12px 12px;
}

.passengers-confirm {
    background: #FFC107;
    color: #212529;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.passengers-confirm:hover {
    background: #FFB300;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .passengers-dialog {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }
    
    .passengers-header {
        border-radius: 0;
    }
    
    .passengers-footer {
        border-radius: 0;
    }
    
    .passengers-body {
        flex: 1;
        overflow-y: auto;
    }
}
