﻿.traveler-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

label.pax-lbl {
    font-size: 16px;
    font-weight: bold;
}

.age-range {
    font-size: 10px;
    color: gray;
}

.counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

button.btn-pax {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 20px !important;
    border: 1px solid #ccc !important;
    background: #fcfcfc !important;
    cursor: pointer !important;
    border-radius: 5px !important;
}

    button.btn-pax:disabled {
        opacity: 0.5 !important;
        cursor: not-allowed !important;
        box-shadow: none !important;
    }

input.pax {
    width: 30px !important;
    text-align: center !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: bold !important;
    background: none !important;
}

    input.pax:focus {
        box-shadow: none !important;
        outline: none;
    }
