/**
 * KDF Pages Admin Styles
 *
 * Custom styles for the admin interface
 */

.kdf-generator-container,
.kdf-sync-overview,
.kdf-delete-form {
  margin-top: 20px;
}

.kdf-generator-form {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.kdf-field-row {
  background: #f8f9fa;
  border-left: 4px solid #007cba;
}

.kdf-field-row th,
.kdf-field-row td {
  padding: 15px;
}

.kdf-bulk-actions {
  margin-bottom: 10px;
}

.kdf-bulk-actions .button {
  margin-right: 5px;
}

.kdf-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;
}

.kdf-checkbox-group label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 5px;
  cursor: pointer;
}

.kdf-checkbox-group label:hover {
  background: #f0f0f1;
}

.kdf-checkbox-group label.opacity-50 {
  opacity: 0.5;
  cursor: not-allowed;
}

.kdf-checkbox-group label input:disabled {
  cursor: not-allowed;
}

.kdf-checkbox-group label .text-sm {
  font-size: 12px;
  color: #6b7280;
  margin-left: 8px;
}

.kdf-checkbox-group input[type='checkbox'] {
  margin-right: 8px;
}

.kdf-preview-section {
  margin-top: 20px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
}

.kdf-preview-box {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
}

.kdf-generator-results,
.kdf-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 */
.kdf-sync-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.kdf-stat-card {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.kdf-stat-card h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #666;
}

.kdf-stat-card .stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #007cba;
}

.kdf-stat-card.warning .stat-number {
  color: #f39c12;
}

.kdf-stat-card.error .stat-number {
  color: #e74c3c;
}

.kdf-sync-actions {
  margin-bottom: 30px;
}

.kdf-page-type-status {
  display: grid;
  gap: 20px;
}

.kdf-type-card {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  padding: 20px;
}

.kdf-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 */
.kdf-delete-warning {
  margin-bottom: 20px;
}

.kdf-delete-form {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.kdf-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) {
  .kdf-checkbox-group {
    grid-template-columns: 1fr;
  }

  .type-stats {
    flex-direction: column;
    gap: 5px;
  }

  .page-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .kdf-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: #2563dc24;
}

.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: #2563dc;
  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: #0f766e;
  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: #2d3647;
  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: #1d4ed8;
}

.doctor-card-action {
  display: flex;
  justify-content: center;
}

/* Admin Interface Styles */
.kdf-admin-section {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.kdf-admin-debug {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
  overflow-x: auto;
}

.kdf-admin-debug-summary {
  margin-top: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
}

.kdf-admin-error-list {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
}

.kdf-admin-error-item {
  margin-bottom: 5px;
}

.kdf-admin-info-box {
  background: #f0f6ff;
  border-left: 4px solid #2271b1;
  padding: 15px;
  margin-bottom: 20px;
}

.kdf-admin-usage-info {
  background: #fff;
  border: 1px solid #ccd0d4;
  padding: 15px;
  margin-top: 20px;
}

.kdf-admin-test-results {
  display: none;
  margin-top: 10px;
}

.kdf-admin-button-spacing {
  margin-left: 10px;
}

.kdf-admin-flex-gap {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.kdf-admin-details {
  margin-top: 10px;
}

.kdf-admin-details-content {
  margin-top: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
}

/* Shortcode Handler Styles */
.kdf-doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.kdf-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 */
.kdf-table-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kdf-table-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.kdf-table-avatar-placeholder {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kdf-table-avatar-icon {
  width: 24px;
  height: 24px;
  color: #9ca3af;
}

.kdf-table-doctor-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.kdf-table-doctor-link {
  color: #14b8a6;
  text-decoration: none;
}

.kdf-table-rating-container {
  display: flex;
  align-items: center;
}

.kdf-table-rating-stars {
  color: #fbbf24;
  margin-right: 8px;
}

.kdf-table-rating-score {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.kdf-table-action-link {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.kdf-table-empty-cell {
  text-align: center;
  color: #6b7280;
}

/* Admin Interface Display Toggles */
.kdf-hidden {
  display: none;
}

/* Page Content Styles */
.kdf-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;
}

.kdf-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;
}

.kdf-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;
}

.kdf-faq-question {
  color: #1a202c;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  line-height: 1.4;
}

.kdf-intro-paragraph {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.kdf-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 !important;
  transition: all 0.2s ease;
}

.kdf-specialist-link:hover {
  background: #e0f2fe;
  color: #0284c7;
}

.kdf-specialist-count {
  background: #dbeafe;
  color: #1e40af;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
}

.kdf-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;
}

.kdf-female-specialist-link:hover {
  opacity: 0.8;
}

.kdf-female-specialist-count {
  background: #f3e8ff;
  color: #581c87;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
}

.kdf-error-message {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 16px;
  border-radius: 4px;
}

.kdf-specialists-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
  border-top: 1px solid #e2e8f052;
  padding-top: 20px;
}

/* 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;
}

/*
 * KDF Top Doctors Table Styles
 * Add this CSS to your theme's stylesheet or enqueue it separately
 */

/* Main table container */
.kdf-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 */
.kdf-table-header {
}

.kdf-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 */
.kdf-table-body {
  background: white;
}

.kdf-table-row {
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}
.kdf-table-row:nth-child(odd) {
  background-color: #f5f5f58f;
}

.kdf-table-row:hover {
  background-color: #f8fafc;
}

.kdf-table-row:last-child {
  border-bottom: none;
}

/* Column styles */
.kdf-col-rank {
  width: 60px;
  text-align: center;
  font-weight: 700;
  color: #0f766e;
  font-size: 18px;
}

.kdf-col-doctor {
  min-width: 280px;
  padding: 16px 12px;
}

.kdf-col-specialty {
  min-width: 150px;
  font-weight: 500;
  color: #0f766e;
}

.kdf-col-action {
  width: 140px;
  text-align: center;
}

/* Doctor info container */
.kdf-doctor-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Doctor avatar */
.kdf-doctor-avatar {
  flex-shrink: 0;
}

.kdf-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ccfbf1;
  transition: transform 0.2s ease;
}

.kdf-avatar-img:hover {
  transform: scale(1.05);
  border-color: #5eead4;
}

.kdf-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;
}

.kdf-avatar-icon {
  width: 24px;
  height: 24px;
  color: #9ca3af;
}
.kdf-cta-button a {
  color: #ffffff !important;
}

.kdf-cta-heading {
  font-size: 20px !important;
}

/* Doctor details */
.kdf-doctor-details {
  flex: 1;
  min-width: 0;
}

.kdf-doctor-name {
  margin: 5px 0px !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.2;
}

.kdf-doctor-link {
  color: #0f766e;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: none !important;
}

.kdf-doctor-link:hover {
  color: #115e59;
}

.kdf-doctor-designation {
  margin: 2px 0;
  font-size: 16px !important;
  color: #374151;
  font-weight: 600;
  line-height: 1.3 !important;
  margin-bottom: 0 !important;
}

.kdf-doctor-hospital {
  margin: 2px 0;
  font-size: 15px !important;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3 !important;
  margin-bottom: 0 !important;
}

/* Action link */
.kdf-action-link {
}

.kdf-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 */
.kdf-no-results-message {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 40px 20px;
  font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
  .kdf-top-doctors-table {
    font-size: 14px;
  }

  .kdf-col-doctor {
    min-width: 200px;
    padding: 12px 8px;
    color: #000 !important;
  }

  .kdf-avatar-img,
  .kdf-avatar-placeholder {
    width: 48px;
    height: 48px;
  }

  .kdf-doctor-name {
    font-size: 16px;
    color: #000 !important;
  }

  .kdf-doctor-designation,
  .kdf-doctor-hospital {
    font-size: 12px;
    color: #000 !important;
  }

  .kdf-action-link {
    padding: 6px 12px;
    font-size: 12px;
  }
  .kdf-col-action {
    display: none;
  }
}

@media (max-width: 640px) {
  .kdf-top-doctors-table {
    font-size: 13px;
  }

  .kdf-col-rank {
    width: 40px;
    font-size: 16px;
  }

  .kdf-col-specialty {
    display: none; /* Hide specialty on very small screens */
  }

  .kdf-col-doctor {
    min-width: 150px;
  }

  .kdf-doctor-info {
    gap: 8px;
  }

  .kdf-avatar-img,
  .kdf-avatar-placeholder {
    width: 40px;
    height: 40px;
  }

  .kdf-doctor-name {
    font-size: 14px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .kdf-top-doctors-table {
    background: #1f2937;
    color: #f9fafb;
  }

  .kdf-table-row {
    border-bottom-color: #374151;
  }

  .kdf-table-row:hover {
    background-color: #111827;
  }

  .kdf-avatar-placeholder {
    background: linear-gradient(135deg, #134e4a 0%, #115e59 100%);
    border-color: #0f766e;
  }

  .kdf-avatar-icon {
    color: #5eead4;
  }

  .kdf-doctor-link {
    color: #5eead4;
    border-bottom: none !important;
  }

  .kdf-doctor-link:hover {
    color: #99f6e4;
  }

  .kdf-doctor-designation {
    color: #d1d5db;
  }

  .kdf-doctor-hospital {
    color: #9ca3af;
  }

  .kdf-no-results-message {
    color: #9ca3af;
  }
}
