.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 4px;
    max-width: 160px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.qty-btn:hover {
    background: #c9a227;
    color: #fff;
    transform: scale(1.05);
}

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

.qty-btn:disabled,
.qty-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.qty-btn.qty-minus {
    margin-right: 4px;
}

.qty-btn.qty-plus {
    margin-left: 4px;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    appearance: textfield;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

@media (max-width: 576px) {
    .qty-selector {
        max-width: 140px;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
    }

    .qty-input {
        width: 40px;
        font-size: 1.1rem;
    }
}

/* Style pour le modal nombre de voyageurs (setDateAndNb) */
.qty-control {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    height: 38px;
}

.qty-control .qty-btn {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #495057;
}

.qty-control .qty-btn:hover {
    background: #e9ecef;
}

.qty-control .qty-btn:active {
    background: #dee2e6;
}

.qty-control input {
    flex: 1;
    border: none;
    text-align: center;
    font-size: 14px;
    min-width: 0;
    background: #fff;
}

.qty-control input:focus {
    outline: none;
}
