/* dnaromance/static/css/booking.css */

/* General Styles */
.specialty-tags .badge {
    opacity: 0.8;
    background-color: #6c757d !important;
    color: #fff;
    font-size: 0.75rem;
    margin: 2px;
}

.consultation-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Filter Alignment */
@media (min-width: 768px) {
    .filter-section .col-md-3 {
        max-width: 25%;
    }
}

/* No Results Message */
.no-results {
    font-size: 1.2rem;
    color: #dc3545;
    margin-top: 20px;
    display: none;
}

/* Loader Styles */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #007bff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
    display: none;
    position: relative;
}

.loader span {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #007bff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional Spacing for Sections */
.consultation-options > .col-12 {
    margin-bottom: 60px;
}

/* Ensure Images Have Consistent Sizing */
.consultation-image {
    object-fit: cover;
}

/* Visual Differentiation for Consultation Cards */
.consultation-card .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.consultation-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.consultation-card .card-text {
    font-size: 0.95rem;
    color: #555;
    border-color: #007bff;
}

/* State-specific Styling (Optional)
.consultation-card[data-state="TX"] .card {
    border-color: #007bff;
} */

/* 
.consultation-card[data-state="CA"] .card {
    border-color: #28a745;
} */

/* Add more state-specific styles as needed */
