/**
 * Medexly Pages Admin Styles
 *
 * Custom styles for the admin interface
 */

.medexly-generator-container,
.medexly-sync-overview,
.medexly-delete-form {
    margin-top: 20px;
}

.medexly-generator-form {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.medexly-field-row {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
}

.medexly-field-row th,
.medexly-field-row td {
    padding: 15px;
}

.medexly-bulk-actions {
    margin-bottom: 10px;
}

.medexly-bulk-actions .button {
    margin-right: 5px;
}

.medexly-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.medexly-checkbox-group label {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px;
    cursor: pointer;
}

.medexly-checkbox-group label:hover {
    background: #f0f0f1;
}

.medexly-checkbox-group label.opacity-50 {
    opacity: 0.5;
    cursor: not-allowed;
}

.medexly-checkbox-group label input:disabled {
    cursor: not-allowed;
}

.medexly-checkbox-group label .text-sm {
    font-size: 12px;
    color: #6b7280;
    margin-left: 8px;
}

.medexly-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

.medexly-preview-section {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.medexly-preview-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.medexly-generator-results,
.medexly-delete-results {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.results-summary {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.result-created,
.result-skipped,
.result-deleted {
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.result-created {
    background: #d4edda;
    color: #155724;
}

.result-skipped {
    background: #fff3cd;
    color: #856404;
}

.result-deleted {
    background: #f8d7da;
    color: #721c24;
}

.results-errors {
    margin-top: 15px;
}

.results-errors ul {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 10px;
    margin: 0;
}

.results-errors li {
    color: #721c24;
}

/* Sync Status Styles */
.medexly-sync-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.medexly-stat-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.medexly-stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
}

.medexly-stat-card .stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #007cba;
}

.medexly-stat-card.warning .stat-number {
    color: #f39c12;
}

.medexly-stat-card.error .stat-number {
    color: #e74c3c;
}

.medexly-sync-actions {
    margin-bottom: 30px;
}

.medexly-page-type-status {
    display: grid;
    gap: 20px;
}

.medexly-type-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
}

.medexly-type-card h3 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.type-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.type-stats span {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.stat-expected { background: #e7f3ff; color: #007cba; }
.stat-existing { background: #d4edda; color: #155724; }
.stat-missing { background: #f8d7da; color: #721c24; }
.stat-duplicates { background: #fff3cd; color: #856404; }

.page-details {
    margin-top: 15px;
}

.page-details summary {
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.page-list {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.page-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.page-item:last-child {
    border-bottom: none;
}

.page-item.status-exists { background: #f8fff9; }
.page-item.status-draft { background: #fffbf0; }
.page-item.status-missing { background: #fff5f5; }
.page-item.status-duplicate_risk { background: #fff8f0; }

.page-title {
    flex: 1;
    font-weight: 500;
}

.page-status {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.page-edit-link {
    font-size: 12px;
    text-decoration: none;
    color: #007cba;
    margin-left: 10px;
}

.page-edit-link:hover {
    text-decoration: underline;
}

/* Bulk Delete Styles */
.medexly-delete-warning {
    margin-bottom: 20px;
}

.medexly-delete-form {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.medexly-delete-preview {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.button-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.button-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .medexly-checkbox-group {
        grid-template-columns: 1fr;
    }

    .type-stats {
        flex-direction: column;
        gap: 5px;
    }

    .page-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .medexly-sync-overview {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-link {
    color: #007cba;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #6b7280;
    font-weight: normal;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 600;
}

/* Doctor Card Component Styles */
.doctor-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.doctor-card-sponsored {
    border-color: #5eead4;
}

.doctor-card-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.doctor-card-image {
    width: 96px;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
}

.doctor-card-sponsored-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0d9488;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.doctor-card-name {
    font-size: 22px !important;
    line-height: 30px !important;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 12px !important;
}

.doctor-card-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #111827 !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}

.doctor-card-name-link:hover {
    color: #0c7c73 !important;
}

.doctor-card-verified-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 4px;
    color: #2563eb;
}

.doctor-card-qualifications,
.doctor-card-specialty,
.doctor-card-experience,
.doctor-card-designation,
.doctor-card-hospital,
.doctor-card-location {
    text-align: center;
    line-height: 22px;
        font-size: 16px !important;
        margin-bottom: 8px !important;
        line-height: 22px !important;
}

.doctor-card-qualifications {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.doctor-card-specialty {
    color: #0d9488;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 3px;
}

.doctor-card-experience {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 3px;
}

.doctor-card-designation {
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px !important;
}

.doctor-card-hospital-link {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.2s ease;
}

.doctor-card-hospital-link:hover {
    color: #0f766e;
}

.doctor-card-location {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
}

.doctor-card-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.doctor-card-stars {
    color: #fbbf24;
    font-size: 18px;
}

.doctor-card-rating-votes {
    color: #4b5563;
    font-size: 14px;
    margin-left: 8px;
}

.doctor-card-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    background: #0d9488;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.doctor-card-action-button:hover {
    background-color: #0f766e;
}

.doctor-card-action {
    display: flex;
    justify-content: center;
}

/* Admin Interface Styles */
.medexly-admin-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.medexly-admin-debug {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    overflow-x: auto;
}

.medexly-admin-debug-summary {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

.medexly-admin-error-list {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
}

.medexly-admin-error-item {
    margin-bottom: 5px;
}

.medexly-admin-info-box {
    background: #f0f6ff;
    border-left: 4px solid #2271b1;
    padding: 15px;
    margin-bottom: 20px;
}

.medexly-admin-usage-info {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 15px;
    margin-top: 20px;
}

.medexly-admin-test-results {
    display: none;
    margin-top: 10px;
}

.medexly-admin-button-spacing {
    margin-left: 10px;
}

.medexly-admin-flex-gap {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.medexly-admin-details {
    margin-top: 10px;
}

.medexly-admin-details-content {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

/* Shortcode Handler Styles */
.medexly-doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.medexly-doctors-list {
    margin: 20px 0;
}

/* Doctor Card Fallback Styles (for shortcode handler) */
.doctor-card-fallback {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.doctor-card-fallback-sponsored {
    border-color: #93c5fd;
}

.doctor-card-fallback-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.doctor-card-fallback-image {
    width: 96px;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid #2dd4bf;
}

.doctor-card-fallback-sponsored-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #14b8a6;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.doctor-card-fallback-name {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #14b8a6;
    margin-bottom: 8px;
}

.doctor-card-fallback-name-link {
    color: inherit;
    text-decoration: none;
}

.doctor-card-fallback-specialty {
    text-align: center;
    color: #14b8a6;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.doctor-card-fallback-location {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.doctor-card-fallback-action {
    display: flex;
    justify-content: center;
}

.doctor-card-fallback-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: #14b8a6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

/* Table Styles for Top Doctors */
.medexly-table-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.medexly-table-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.medexly-table-avatar-placeholder {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medexly-table-avatar-icon {
    width: 24px;
    height: 24px;
    color: #9ca3af;
}

.medexly-table-doctor-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.medexly-table-doctor-link {
    color: #14b8a6;
    text-decoration: none;
}

.medexly-table-rating-container {
    display: flex;
    align-items: center;
}

.medexly-table-rating-stars {
    color: #fbbf24;
    margin-right: 8px;
}

.medexly-table-rating-score {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.medexly-table-action-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.medexly-table-empty-cell {
    text-align: center;
    color: #6b7280;
}

/* Admin Interface Display Toggles */
.medexly-hidden {
    display: none;
}

/* Page Content Styles */
.medexly-transparency-notice {
    background: #f8f9fa;
    border-left: 4px solid #17a2b8;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.medexly-faq-heading {
    color: #1a365d;
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 20px 0;
    border-bottom: 1px solid #e2e8f061;
    padding-bottom: 10px;
    margin-top: 25px !important;
}

.medexly-section-heading {
    color: #2d3748;
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-bottom: 1px solid #e2e8f052;
    border-top: 1px solid #e2e8f052;
    padding-bottom: 8px;
}

.medexly-faq-question {
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

.medexly-intro-paragraph {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.medexly-specialist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #bae6fd;
    transition: all 0.2s ease;
}

.medexly-specialist-link:hover {
    background: #e0f2fe;
    color: #0284c7;
}

.medexly-specialist-count {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
}

.medexly-female-specialist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #faf5ff;
    color: #6b21a8;
    padding: 8px 12px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d8b4fe;
    transition: opacity 0.2s ease;
}

.medexly-female-specialist-link:hover {
    opacity: 0.8;
}

.medexly-female-specialist-count {
    background: #f3e8ff;
    color: #581c87;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
}

.medexly-error-message {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    padding: 16px;
    border-radius: 4px;
}

.medexly-specialists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

/* Test Component Styles */
.test-component-success {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    padding: 15px;
    margin: 10px;
    border-radius: 4px;
}

.test-component-success-title {
    color: #2e7d32;
    margin: 0;
}

.test-component-success-text {
    margin: 10px 0 0 0;
    color: #1b5e20;
}

.test-component-error {
    background: #ffebee;
    border: 1px solid #f44336;
    padding: 15px;
    margin: 10px;
    border-radius: 4px;
}

.test-component-error-title {
    color: #c62828;
    margin: 0;
}

.test-component-error-text {
    margin: 10px 0 0 0;
    color: #b71c1c;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/*
 * Medexly Top Doctors Table Styles
 * Add this CSS to your theme's stylesheet or enqueue it separately
 */

/* Main table container */
.medexly-top-doctors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Table header */
.medexly-table-header {

}

.medexly-table-header th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

/* Table body */
.medexly-table-body {
    background: white;
}

.medexly-table-row {
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}
.medexly-table-row:nth-child(odd) {
    background-color: #f5f5f58f;
}

.medexly-table-row:hover {
    background-color: #f8fafc;
}

.medexly-table-row:last-child {
    border-bottom: none;
}

/* Column styles */
.medexly-col-rank {
    width: 60px;
    text-align: center;
    font-weight: 700;
    color: #0f766e;
    font-size: 18px;
}

.medexly-col-doctor {
    min-width: 280px;
    padding: 16px 12px;
}

.medexly-col-specialty {
    min-width: 150px;
    font-weight: 500;
    color: #0f766e;
}

.medexly-col-action {
    width: 140px;
    text-align: center;
}

/* Doctor info container */
.medexly-doctor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Doctor avatar */
.medexly-doctor-avatar {
    flex-shrink: 0;
}

.medexly-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccfbf1;
    transition: transform 0.2s ease;
}

.medexly-avatar-img:hover {
    transform: scale(1.05);
    border-color: #5eead4;
}

.medexly-avatar-placeholder {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1d5db;
}

.medexly-avatar-icon {
    width: 24px;
    height: 24px;
    color: #9ca3af;
}

/* Doctor details */
.medexly-doctor-details {
    flex: 1;
    min-width: 0;
}

.medexly-doctor-name {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.medexly-doctor-link {
    color: #0f766e;
    text-decoration: none;
    transition: color 0.2s ease;
    
}

.medexly-doctor-link:hover {
    color: #115e59;
}

.medexly-doctor-designation {
    margin: 2px 0;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.medexly-doctor-hospital {
    margin: 2px 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

/* Action link */
.medexly-action-link {

}

.medexly-action-link:hover {
    background: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* No results message */
.medexly-no-results-message {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 40px 20px;
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .medexly-top-doctors-table {
        font-size: 14px;
    }

    .medexly-col-doctor {
        min-width: 200px;
        padding: 12px 8px;
        color: #000 !important;
    }

    .medexly-avatar-img,
    .medexly-avatar-placeholder {
        width: 48px;
        height: 48px;
    }

    .medexly-doctor-name {
        font-size: 16px;
        color: #000 !important;
    }

    .medexly-doctor-designation,
    .medexly-doctor-hospital {
        font-size: 12px;
        color: #000 !important;
    }

    .medexly-action-link {
        padding: 6px 12px;
        font-size: 12px;
    }
    .medexly-col-action {
        display: none;
    }
}

@media (max-width: 640px) {
    .medexly-top-doctors-table {
        font-size: 13px;
    }

    .medexly-col-rank {
        width: 40px;
        font-size: 16px;
    }

    .medexly-col-specialty {
        display: none; /* Hide specialty on very small screens */
    }

    .medexly-col-doctor {
        min-width: 150px;
    }

    .medexly-doctor-info {
        gap: 8px;
    }

    .medexly-avatar-img,
    .medexly-avatar-placeholder {
        width: 40px;
        height: 40px;
    }

    .medexly-doctor-name {
        font-size: 14px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .medexly-top-doctors-table {
        background: #1f2937;
        color: #f9fafb;
    }

    .medexly-table-row {
        border-bottom-color: #374151;
    }

    .medexly-table-row:hover {
        background-color: #111827;
    }

    .medexly-avatar-placeholder {
        background: linear-gradient(135deg, #134e4a 0%, #115e59 100%);
        border-color: #0f766e;
    }

    .medexly-avatar-icon {
        color: #5eead4;
    }

    .medexly-doctor-link {
        color: #5eead4;
        border-bottom: none !important;
    }

    .medexly-doctor-link:hover {
        color: #99f6e4;
    }

    .medexly-doctor-designation {
        color: #d1d5db;
    }

    .medexly-doctor-hospital {
        color: #9ca3af;
    }

    .medexly-no-results-message {
        color: #9ca3af;
    }
}