.pax-selector {
    background: #e8f5e8;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #d0e8d0;
    margin-top: 0.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pax-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pax-section:last-of-type {
    margin-bottom: 1.5rem;
}

.pax-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.pax-age {
    display: block;
    font-size: 11px;
    /*color: #777;*/
}

.pax-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pax-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: #f0f0f0;
    color: #666;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pax-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.pax-btn:active {
    transform: scale(0.95);
}

.pax-display {
    width: 40px;
    height: 32px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.pax-aplicar-btn {
    width: 100%;
    background: white;
    color: #FF8200;
    border: 2px solid #FF8200;
    border-radius: 6px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pax-aplicar-btn:hover {
    background: #FF8200;
    color: white;
}

.pax-aplicar-btn:active {
    transform: scale(0.98);
}

/* Disable minus button when count is 1 */
.pax-btn.pax-minus:disabled {
    background: #f8f8f8;
    color: #ccc;
    cursor: not-allowed;
}

.pax-btn.pax-minus:disabled:hover {
    background: #f8f8f8;
    color: #ccc;
}

/* pax Trigger (Clickable Field) */
.pax-trigger {
    width: 215px;
    height: 40px;
    padding: 9.5px 41px 9.5px 17px;
    border-radius: 6px;
    border: 1px solid #72777F;
    background: #FFF;
    font-size: 1rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tour-date-input:hover,
.tour-time-input:hover,
.pax-trigger:hover {
    border-color: #7ac142;
}

.pax-trigger.active {
    border-color: #7ac142;
    box-shadow: 0 0 0 2px rgba(122, 193, 66, 0.2);
}

.pax-trigger-text {
    color: #000;
    font-size: 1rem;
}

.pax-trigger-icon {
    color: #666;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.pax-trigger.active .pax-trigger-icon {
    transform: rotate(180deg);
}