/* ══════════════════════════════════════════════════════════════
   SUAR DASHBOARD — CSS Design System
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Core palette (SIGAP App Theme) */
  --primary: #7ba8dc;
  --primary-dark: #588bca;
  --primary-light: #a3c3e8;
  --primary-bg: #f1f6fc;
  
  --success: #10b981;
  --success-bg: #d1fae5;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --danger: #ef4444;
  --danger-bg: #fee2e2;
  --info: #3b82f6;
  --info-bg: #dbeafe;

  /* Neutrals */
  --bg-body: #f5f5f7;
  --bg-card: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-sidebar-hover: #f1f5f9;
  --bg-input: #f1f5f9;

  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #f8fafc;
  --text-sidebar: #64748b;

  --border: rgba(0,0,0,0.06);
  --border-focus: var(--primary);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.03);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --sidebar-width: 260px;
  --topbar-height: 64px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   LOGIN
   ══════════════════════════════════════════ */

.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #588bca 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-screen::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 168, 220, 0.15), transparent);
  top: -200px; right: -200px;
}

.login-screen::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.1), transparent);
  bottom: -100px; left: -100px;
}

.login-container {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease-out;
}

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

.login-brand {
  text-align: center;
  margin-bottom: 36px;
}

.login-logo {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  color: var(--primary-light);
}

.login-brand h1 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.login-brand p {
  font-size: 0.85rem;
  color: var(--text-sidebar);
  margin-top: 4px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sidebar);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.login-form input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.login-form input::placeholder { color: rgba(255,255,255,0.3); }
.login-form input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

.login-error {
  background: var(--danger-bg);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-top: 12px;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.login-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.online { background: var(--success); box-shadow: 0 0 6px var(--success); }
.status-dot.offline { background: var(--danger); }

.btn-link {
  background: none;
  border: none;
  color: var(--primary-light);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  margin-top: 8px;
  transition: color 0.2s;
}
.btn-link:hover { color: white; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--border); }

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--danger);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-danger:hover { background: #dc2626; }

.btn-success {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--success);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-success:hover { background: #059669; }

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

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.btn-icon:hover { background: var(--bg-input); color: var(--text-primary); }
.btn-icon svg { width: 18px; height: 18px; }

.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   DASHBOARD LAYOUT
   ══════════════════════════════════════════ */

.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brand-icon {
  width: 36px; height: 36px;
  color: var(--primary-light);
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-sidebar);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 4px;
  position: relative;
}

.nav-item svg { width: 20px; height: 20px; flex-shrink: 0; }

.nav-item:hover { background: rgba(0,0,0,0.03); color: var(--text-primary); }

.nav-item.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(123, 168, 220, 0.3);
}

.nav-badge {
  position: absolute;
  right: 12px;
  background: var(--primary-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
}

.nav-badge.urgent {
  background: var(--danger);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.user-avatar {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.user-details { display: flex; flex-direction: column; }
.user-name { color: var(--text-primary); font-size: 0.85rem; font-weight: 600; }
.user-role { color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }

.btn-logout {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-logout:hover { background: rgba(239,68,68,0.15); color: var(--danger); border-color: var(--danger); }
.btn-logout svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════ */

.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  height: var(--topbar-height);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.btn-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}
.btn-menu svg { width: 24px; height: 24px; }

.topbar-title { flex: 1; }
.topbar-title h2 { font-size: 1.2rem; font-weight: 700; }
.topbar-date { font-size: 0.8rem; color: var(--text-muted); }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.server-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.page-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

/* ══════════════════════════════════════════
   STAT CARDS
   ══════════════════════════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-icon.purple { background: var(--primary-bg); color: var(--primary); }
.stat-icon.green  { background: var(--success-bg); color: var(--success); }
.stat-icon.yellow { background: var(--warning-bg); color: var(--warning); }
.stat-icon.red    { background: var(--danger-bg);  color: var(--danger); }
.stat-icon.blue   { background: var(--info-bg);    color: var(--info); }

.stat-info { flex: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.stat-value { font-size: 1.6rem; font-weight: 800; margin-top: 2px; letter-spacing: -0.02em; }
.stat-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════════
   DATA TABLES
   ══════════════════════════════════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.card-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.card-body { padding: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-input);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:hover td { background: rgba(99,102,241,0.02); }

/* ══════════════════════════════════════════
   BADGES & STATUS
   ══════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-pending  { background: var(--warning-bg); color: #92400e; }
.badge-diterima { background: var(--info-bg);    color: #1e40af; }
.badge-diproses { background: var(--primary-bg); color: var(--primary); }
.badge-selesai  { background: var(--success-bg); color: #065f46; }
.badge-ditolak  { background: var(--danger-bg);  color: #991b1b; }
.badge-active   { background: var(--danger-bg);  color: var(--danger); }
.badge-responding { background: var(--warning-bg); color: #92400e; }
.badge-resolved { background: var(--success-bg); color: #065f46; }
.badge-cancelled { background: var(--danger-bg); color: #991b1b; }
.badge-stopped_by_user { background: #f3f4f6; color: #4b5563; border: 1px solid #d1d5db; }
.badge-user     { background: var(--info-bg);    color: var(--info); }
.badge-admin    { background: var(--primary-bg); color: var(--primary); }
.badge-psikolog { background: var(--success-bg); color: var(--success); }
.badge-mahasiswa { background: #fdf4ff; color: #86198f; }
.badge-dosen    { background: #fff7ed; color: #c2410c; }
.badge-karyawan { background: #f0fdf4; color: #166534; }

/* ══════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════ */

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.modal-content p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }

.modal-large { max-width: 720px; max-height: 85vh; overflow-y: auto; }

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

.modal-body { margin-bottom: 20px; }

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.input-full {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.input-full:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* ══════════════════════════════════════════
   DETAIL ITEMS
   ══════════════════════════════════════════ */

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-item {
  padding: 10px 0;
}

.detail-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.detail-item .value {
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-full {
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: var(--bg-input);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Audit trail */
.audit-timeline {
  border-left: 2px solid var(--border);
  padding-left: 20px;
  margin-top: 16px;
}

.audit-entry {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.audit-entry:last-child { border-bottom: none; }

.audit-entry::before {
  content: '';
  position: absolute;
  left: -25px; top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid white;
}

.audit-entry .action { font-weight: 600; font-size: 0.85rem; }
.audit-entry .detail { color: var(--text-secondary); font-size: 0.8rem; margin-top: 2px; }
.audit-entry .meta { color: var(--text-muted); font-size: 0.75rem; margin-top: 4px; }

/* DB Viewer */
.db-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.db-tab {
  padding: 6px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.2s;
}

.db-tab:hover { border-color: var(--primary); color: var(--primary); }
.db-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

.table-scroll { overflow-x: auto; }

.mono { font-family: var(--font-mono); font-size: 0.8rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }
.empty-state h4 { font-size: 1rem; color: var(--text-secondary); margin-bottom: 4px; }
.empty-state p { font-size: 0.85rem; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-input) 25%, #e8edf2 50%, var(--bg-input) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════
   SELECT
   ══════════════════════════════════════════ */
select.input-full {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.input-full {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-sans);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-xl);
  }

  .main-content {
    margin-left: 0;
  }

  .btn-menu { display: flex; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .page-content { padding: 16px; }
  .topbar { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════════
   SOS ALARM — Kedip merah seluruh layar saat darurat aktif
   ══════════════════════════════════════════════════════════════ */

@keyframes sos-blink {
  0%, 100% { box-shadow: inset 0 0 0 0 transparent; }
  50%      { box-shadow: inset 0 0 80px 20px rgba(220, 38, 38, 0.25); }
}

body.sos-active-blink {
  animation: sos-blink 1.2s ease-in-out infinite;
}

body.sos-active-blink .sidebar {
  border-right: 3px solid #dc2626;
}

body.sos-active-blink #sos-alert-bar {
  box-shadow: 0 4px 30px rgba(220, 38, 38, 0.6);
}
