/* Form Styling */
.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.input-group .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
}

.form-control {
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Therapist Field Specific Styling */
.therapist-field .input-group-text {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.therapist-field .form-control {
    border-left: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-group label {
        font-size: 0.9rem;
    }
}
