/* Consultation Form Styles */
.consultation-main {
    font-family: var(--bs-body-font-family), sans-serif;
}

.consultation-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.consultation-step {
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#dt-consultation-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

#dt-consultation-form .form-check-label {
    color: #444;
}

#dt-consultation-form .form-check {
    margin-bottom: 0.5rem;
}

#dt-consultation-form .is-invalid {
    border-color: #dc3545 !important;
    border-width: 2px !important;
    background-color: #fff8f8 !important;
}

/* Pharmacy Search Results */
#pharmacy_results {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.pharmacy-item {
    cursor: pointer;
    text-align: left;
}

.pharmacy-item:hover {
    background-color: #f8f9fa;
}

.progress-bar {
    transition: width 0.4s ease;
}
