:root {
  --primary-color: #1e7e34;
  --secondary-color: #28a745;
  --bg-color: #f4f6f9;
  --card-bg: #ffffff;
  --text-color: #333333;
  --border-radius: 10px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.header {
  background: linear-gradient(135deg, #1e7e34 0%, #155d27 100%);
  color: white;
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-rsib {
  height: 52px;
  margin-right: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hospital-info h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hospital-info p {
  margin: 3px 0 0 0;
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 500;
}

.container {
  max-width: 1000px;
  margin: 24px auto;
  padding: 0 16px;
}

.search-section {
  background-color: var(--card-bg);
  padding: 22px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid #eaeef2;
  margin-bottom: 20px;
  transition: box-shadow 0.25s ease;
}

.search-section:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Tata Letak Utama Satu Kolom */
.main-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.panel-kiri, .panel-kanan {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: #2c3e50;
}

.search-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  background-color: #fafbfc;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.12);
}

.textarea-pending {
  height: 120px;
  resize: vertical;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 11px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #155d27;
  box-shadow: 0 4px 8px rgba(30, 126, 52, 0.2);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
}

/* Drop Zone Styling */
.drop-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  background-color: #f8fafc;
  transition: all 0.25s ease;
  cursor: pointer;
}

.drop-zone:hover {
  border-color: var(--primary-color);
  background-color: #f0fdf4;
}

.drop-zone.drag-over {
  background-color: #f0fdf4;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(30, 126, 52, 0.15);
}

/* Progress Bar */
.progress-container {
  background: #f8f9fa;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4a5568;
}

.progress-bar-bg {
  width: 100%;
  height: 10px;
  background-color: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  border-radius: 5px;
}

/* Kotak Output Analisis di Sebelah Kanan */
.ai-summary-box-side {
  background-color: var(--card-bg);
  border: 1px solid #cce5ff;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.ai-header {
  background: linear-gradient(135deg, #e8f4f8 0%, #d8edf5 100%);
  padding: 14px 16px;
  font-weight: 700;
  color: #1b4965;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  border-bottom: 1px solid #b8daff;
}

.btn-copy {
  background-color: #1b4965;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-copy:hover {
  background-color: #123348;
}

.summary-content {
  padding: 18px;
  white-space: pre-wrap;
  line-height: 1.7;
  font-size: 0.9rem;
  flex-grow: 1;
  max-height: 480px;
  overflow-y: auto;
  color: #2d3748;
  scroll-behavior: smooth;
}

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

.summary-content.fade-in-active {
  animation: fadeInResult 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Switch Toggle Mode */
.mode-switch-card-inline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f0f7f4;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #d4ede2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mode-switch-card-inline:hover {
  border-color: #a8dfc8;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.mode-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: left;
}

.mode-label {
  display: block;
  font-weight: 700;
  font-size: 0.68rem;
  color: #4a5568;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.2;
}

.mode-text-active {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e7e34;
  line-height: 1.2;
  white-space: nowrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #28a745;
  transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #6c757d;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.quota-info-card {
  background-color: #f1f8f5;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.riwayat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.riwayat-item:hover {
  background: #edf2f7;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* ==========================================================================
   KELAS TAMPILAN EKSTRAKSI DARI INDEX.HTML
   ========================================================================== */
.logo-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  gap: 12px;
}

.main-title h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #1b3a2b;
  font-weight: 700;
}

.main-title p {
  margin: 3px 0 0 0;
  font-size: 0.85rem;
  color: #555;
}

.form-group-compact {
  margin: 0;
}

.drop-zone-label {
  cursor: pointer;
}

.drop-zone-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.drop-zone-hint {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.file-name-display {
  font-size: 0.8rem;
  color: #1e7e34;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}

.action-buttons .btn-primary {
  flex: 2;
}

.action-buttons .btn-secondary {
  flex: 1;
}

.ai-header-controls {
  display: none;
  gap: 4px;
  flex-wrap: wrap;
}

.btn-save-custom {
  background-color: #1e7e34;
}

.btn-save-custom:hover {
  background-color: #155d27;
}

.summary-content-empty {
  color: #888;
  font-style: italic;
}

.archive-section {
  margin-top: 20px;
}

.archive-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.archive-title {
  margin: 0;
  font-size: 1.05rem;
  color: #1b3a2b;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-label {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.archive-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-compact {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-xs {
  padding: 4px 8px;
  font-size: 0.75rem;
}

.search-results-box {
  display: none;
  margin-top: 8px;
  max-height: 150px;
  overflow-y: auto;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.history-header label {
  font-size: 0.85rem;
  margin: 0;
}

.history-list-container {
  font-size: 0.85rem;
  color: #555;
}

.toast-notification {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #202124;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 2000;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  max-width: 90vw;
}

/* =========================================================================
   GOOGLE SIGN-IN & GOOGLE DRIVE INTEGRATION STYLES
   ========================================================================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Official Google Sign-In Button */
.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 20px;
  color: #3c4043;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  transition: background-color .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.gsi-material-button:hover {
  background-color: #f8f9fa;
  border-color: #c2c7ce;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.gsi-material-button-content-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsi-material-button-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Drive User Connected Badge in Header */
.drive-user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 4px 12px 4px 6px;
}

.drive-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  background: #ffffff;
}

.drive-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.drive-user-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drive-connected-pill {
  font-size: 0.68rem;
  color: #d4edda;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.btn-drive-logout {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 4px;
}

.btn-drive-logout:hover {
  background: #dc3545;
  color: #ffffff;
}

/* Tombol Aksi Drive di Form Upload */
.drive-upload-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.btn-drive-pick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe;
  color: #1a73e8;
  border: 1px solid #d2e3fc;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-drive-pick:hover {
  background: #d2e3fc;
  border-color: #aecbfa;
}

.btn-drive-save {
  background: #e8f0fe !important;
  color: #1a73e8 !important;
  border-color: #aecbfa !important;
}

.btn-drive-save:hover {
  background: #1a73e8 !important;
  color: #ffffff !important;
}

/* Modal Google Drive Picker */
.drive-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.drive-modal-overlay.active {
  display: flex;
}

.drive-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: driveModalFadeIn 0.2s ease-out;
}

@keyframes driveModalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.drive-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eaeef2;
  background: #f8f9fa;
}

.drive-modal-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #202124;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-drive-modal-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #5f6368;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.btn-drive-modal-close:hover {
  background: #e8eaed;
  color: #202124;
}

.drive-modal-body {
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
}

.drive-search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.drive-search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
}

.drive-search-input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26,115,232,0.15);
}

.drive-files-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  max-height: 380px;
  overflow-y: auto;
}

.drive-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.15s ease;
}

.drive-file-row:hover {
  border-color: #1a73e8;
  background: #f8faff;
  box-shadow: 0 2px 6px rgba(26,115,232,0.08);
}

.drive-file-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.drive-file-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.drive-file-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drive-file-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}

.drive-file-subtext {
  font-size: 0.72rem;
  color: #5f6368;
}

.drive-file-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-select-file {
  background: #1a73e8;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-select-file:hover {
  background: #1557b0;
}

.btn-drive-open-external {
  background: #f1f3f4;
  color: #3c4043;
  border: none;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.75rem;
  cursor: pointer;
}

.btn-drive-open-external:hover {
  background: #e8eaed;
}

.btn-drive-delete-file {
  background: transparent;
  color: #d93025;
  border: 1px solid #fce8e6;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.72rem;
  cursor: pointer;
}

.btn-drive-delete-file:hover {
  background: #d93025;
  color: #ffffff;
}

/* ICD-10 Search Auto-Highlight in AI Output */
.icd-highlight {
  background-color: #fef08a !important;
  color: #854d0e !important;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 0 0 1px #fde047;
}

/* ==========================================================================
   KEAMANAN & PRIVASI DATA PASIEN & HEADER CONTROLS
   ========================================================================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.security-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

.security-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.4);
  animation: pulseSecurity 2s infinite;
}

@keyframes pulseSecurity {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.btn-clear-privacy {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-clear-privacy:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.privacy-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 14px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 0.82rem;
  margin-bottom: 5px;
}

.privacy-card-header strong {
  font-weight: 700;
}

.privacy-icon {
  font-size: 1rem;
}

.privacy-card-text {
  margin: 0 0 8px 0;
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.45;
}

.privacy-card-footer {
  border-top: 1px dashed #cbd5e1;
  padding-top: 8px;
}

.privacy-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #1e293b;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.privacy-checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #16a34a;
  cursor: pointer;
}

/* ==========================================================================
   MODEL SELECTOR & FALLBACK STATUS BADGE
   ========================================================================== */
.model-select-dropdown {
  background: #ffffff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 380px;
}

.model-select-dropdown:hover {
  border-color: #16a34a;
}

.model-select-dropdown:focus {
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.model-used-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 10px;
  white-space: nowrap;
}

.model-badge-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.model-badge-fallback {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  animation: pulseAttention 3s infinite;
}

@keyframes pulseAttention {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}




