.ats-booking-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.ats-field-wrapper {
    flex: 1 1 200px; /* Адаптивность: минимум 200px, иначе перенос */
    display: flex;
    flex-direction: column;
}

.ats-field-label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.ats-booking-group select {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
}

.ats-booking-group select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}