.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #d4af37;
    border-radius: 10px;
}

.booking-form input {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: none;
}

.booking-form input:focus {
    border-color: #d4af37;
}

.btn-confirm {
    background: #1a1a1a !important;
    color: #d4af37 !important;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

/* Efect de bifat pentru servicii */
.service-selected {
    background: #d4af37 !important;
    color: #fff !important;
}