/* ============================================
   OR Scheduling Board - Styles
   Designed for 56" TV (1920x1080) display
   ============================================ */

:root {
    --bg-dark: #0f0f23;
    --bg-header: #1a1a2e;
    --bg-table-header: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --border-color: #2a2a4a;

    /* Status colors */
    --status-scheduled: #6c757d;
    --status-elective: #6366f1;
    --status-urgent: #f59e0b;
    --status-in-progress: #28a745;
    --status-closing: #ffc107;
    --status-pacu: #17a2b8;
    --status-emergency: #dc3545;
    --status-available: #2a2a4a;
}

/* ---- Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   TV DISPLAY BOARD (index.html)
   ============================================ */

body.board-display {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Segoe UI', 'Arial', sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.board-header {
    background: var(--bg-header);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #0d6efd;
    flex-shrink: 0;
}

.board-header .hospital-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.board-header .header-right {
    text-align: right;
}

.board-header .current-date {
    font-size: 22px;
    color: var(--text-secondary);
}

.board-header .current-time {
    font-size: 40px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Status Legend */
.status-legend {
    background: var(--bg-header);
    padding: 8px 30px;
    display: flex;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Connection status */
.connection-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.connection-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
}

.connection-dot.connected {
    background: #28a745;
}

/* Main Table */
.board-table-container {
    flex: 1;
    overflow: hidden;
    padding: 10px 20px;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.board-table thead th {
    background: var(--bg-table-header);
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 8px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
}

.board-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.board-table tbody td {
    padding: 8px 8px;
    font-size: 20px;
    font-weight: 500;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Allow multi-line content in person columns */
.board-table tbody td.col-surgeon,
.board-table tbody td.col-anesthesiologist,
.board-table tbody td.col-nurses {
    white-space: normal;
    line-height: 1.3;
    font-size: 18px;
}

/* Column widths - adjusted for 10 columns with nurses */
.board-table .col-room { width: 6%; }
.board-table .col-patient { width: 11%; }
.board-table .col-age { width: 4%; text-align: center; }
.board-table .col-sex { width: 4%; text-align: center; }
.board-table .col-procedure { width: 17%; }
.board-table .col-surgeon { width: 15%; }
.board-table .col-anesthesiologist { width: 12%; }
.board-table .col-nurses { width: 12%; }
.board-table .col-status { width: 10%; text-align: center; }
.board-table .col-time { width: 6%; text-align: center; }

/* Row status colors */
.row-scheduled { background: rgba(108, 117, 125, 0.35); }
.row-ongoing { background: rgba(40, 167, 69, 0.30); }
.row-closing { background: rgba(255, 193, 7, 0.30); }
.row-closing td { color: #fff; }
.row-pacu { background: rgba(23, 162, 184, 0.30); }
.row-emergency { background: rgba(220, 53, 69, 0.35); }
.row-available { background: rgba(42, 42, 74, 0.3); }
.row-done { background: rgba(42, 42, 74, 0.15); }
.row-done td { color: var(--text-secondary); }

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.scheduled { background: var(--status-scheduled); color: #fff; }
.status-badge.elective { background: var(--status-elective); color: #fff; }
.status-badge.urgent { background: var(--status-urgent); color: #000; }
.status-badge.ongoing { background: var(--status-in-progress); color: #fff; }
.status-badge.closing { background: var(--status-closing); color: #000; }
.status-badge.pacu { background: var(--status-pacu); color: #fff; }
.status-badge.emergency { background: var(--status-emergency); color: #fff; }
.status-badge.available { background: transparent; border: 2px solid var(--text-secondary); color: var(--text-secondary); }
.status-badge.done { background: #495057; color: #adb5bd; }

/* Room number styling */
.room-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
}

/* Case counter badge (3/8) */
.case-counter {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #ddd;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 1px;
}

/* Transfer tag */
.transfer-tag {
    display: block;
    font-size: 13px;
    color: #ffc107;
    font-style: italic;
    margin-top: 2px;
}

/* ---- PACU Indicator in legend bar ---- */
.pacu-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding: 4px 14px;
    border-radius: 8px;
    border: 2px solid #555;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pacu-label {
    color: #b0b0c0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pacu-count {
    font-size: 20px;
    font-variant-numeric: tabular-nums;
}

.pacu-indicator.pacu-ok {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.15);
}
.pacu-indicator.pacu-ok .pacu-count { color: #28a745; }

.pacu-indicator.pacu-warning {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
}
.pacu-indicator.pacu-warning .pacu-count { color: #ffc107; }

.pacu-indicator.pacu-full {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.25);
    animation: pacuPulse 1.5s ease-in-out infinite;
}
.pacu-indicator.pacu-full .pacu-count { color: #dc3545; }

@keyframes pacuPulse {
    0%, 100% { border-color: #dc3545; }
    50% { border-color: #ff6b7a; box-shadow: 0 0 12px rgba(220, 53, 69, 0.4); }
}

/* ---- Announcement Banner (broadcast messages) ---- */
.announcement-banner {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 12px;
    flex-shrink: 0;
}

.announcement-banner.announcement-normal {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.announcement-banner.announcement-urgent {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.announcement-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.announcement-content {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

/* ---- Alert Banner (scrolling ticker) ---- */
.alert-banner {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    gap: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.alert-banner-icon {
    font-size: 22px;
    font-weight: 900;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.alert-banner-info {
    background: rgba(13, 110, 253, 0.25);
    border-bottom: 2px solid #0d6efd;
}
.alert-banner-info .alert-banner-icon { background: #0d6efd; }

.alert-banner-warning {
    background: rgba(255, 193, 7, 0.20);
    border-bottom: 2px solid #ffc107;
}
.alert-banner-warning .alert-banner-icon { background: #ffc107; color: #000; }

.alert-banner-critical {
    background: rgba(220, 53, 69, 0.25);
    border-bottom: 2px solid #dc3545;
    animation: alertPulse 2s ease-in-out infinite;
}
.alert-banner-critical .alert-banner-icon { background: #dc3545; }

@keyframes alertPulse {
    0%, 100% { background: rgba(220, 53, 69, 0.25); }
    50% { background: rgba(220, 53, 69, 0.40); }
}

.alert-banner-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.alert-scroll-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    animation: alertScroll 30s linear infinite;
    padding-left: 100%;
}

@keyframes alertScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ---- Room Alert Badge (shown in room cell) ---- */
.room-alert-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}

.room-alert-critical {
    background: #dc3545;
    color: #fff;
    animation: badgePulse 1.5s ease-in-out infinite;
}

.room-alert-warning {
    background: #ffc107;
    color: #000;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Empty room text */
.empty-room-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 18px;
}

/* ============================================
   ADMIN PANEL (admin.html)
   ============================================ */

body.admin-panel {
    background: #f4f6f9;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #333;
    min-height: 100vh;
}

/* Admin Nav */
.admin-nav {
    background: #1a1a2e;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.admin-nav h1 {
    font-size: 22px;
}

.admin-nav .nav-links a {
    color: #b0b0c0;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
}

.admin-nav .nav-links a:hover {
    color: #fff;
}

/* Notification Bell */
.notif-bell-container {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    color: #b0b0c0;
    transition: color 0.2s;
}
.notif-bell-container:hover { color: #fff; }
.notif-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    padding: 0 4px;
    animation: notif-pulse 2s infinite;
}
@keyframes notif-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Notification Panel */
.notif-panel {
    position: fixed;
    top: 55px;
    right: 20px;
    width: 400px;
    max-height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    overflow: hidden;
}
.notif-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
}
.notif-panel-body {
    max-height: 420px;
    overflow-y: auto;
}
.notif-item {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}
.notif-item:hover { background: #f8f9fa; }
.notif-item.unread { background: #eef5ff; border-left: 3px solid #0d6efd; }
.notif-item.severity-critical { border-left: 3px solid #dc3545; }
.notif-item.severity-critical.unread { background: #fff0f0; }
.notif-item.severity-warning { border-left: 3px solid #ffc107; }
.notif-item.severity-warning.unread { background: #fffbe6; }
.notif-item-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
}
.notif-item-msg {
    font-size: 12px;
    color: #666;
    white-space: pre-line;
    line-height: 1.4;
}
.notif-item-time {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
}

/* Staff Notification Page */
.notif-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.notif-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
}
.notif-page .notif-item {
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

/* Admin Container */
.admin-container {
    max-width: 1600px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Login Page */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 8px;
    font-size: 24px;
    color: #1a1a2e;
}

.login-container p {
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
}

.login-container input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.login-container input:focus {
    border-color: #0d6efd;
}

.login-container .login-error {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 12px;
    display: none;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-header {
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    padding: 20px;
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-wide {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-hint {
    font-weight: 400;
    text-transform: none;
    color: #999;
    font-size: 11px;
}

.form-group input,
.form-group select {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0d6efd;
}

.form-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.97); }

.btn-primary { background: #0d6efd; color: #fff; }
.btn-success { background: #28a745; color: #fff; }
.btn-warning { background: #ffc107; color: #000; }
.btn-info { background: #17a2b8; color: #fff; }
.btn-danger { background: #dc3545; color: #fff; }
.btn-secondary { background: #6c757d; color: #fff; }
.btn-dark { background: #1a1a2e; color: #fff; }

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* Admin Cases Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead th {
    background: #f8f9fa;
    padding: 10px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.admin-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

.admin-table tbody td {
    padding: 10px 12px;
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tbody td.td-multi {
    vertical-align: top;
    line-height: 1.5;
}

/* Room divider row in admin table */
.room-divider {
    background: #1a1a2e !important;
}

.room-divider td {
    color: #fff;
    padding: 8px 12px;
    font-size: 15px;
}

.room-case-count {
    color: #b0b0c0;
    font-weight: 400;
    font-size: 13px;
    margin-left: 12px;
}

/* Done row in admin (greyed out) */
.admin-row-done {
    opacity: 0.5;
}

/* Transfer badge in admin */
.transfer-badge {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

/* Person badges for multi-person cells */
.person-badge {
    display: inline-block;
    background: #e9ecef;
    color: #333;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin: 1px 2px;
    white-space: nowrap;
}

/* Status pills in admin */
.status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pill.scheduled { background: #6c757d; color: #fff; }
.status-pill.elective { background: #6366f1; color: #fff; }
.status-pill.urgent { background: #f59e0b; color: #000; }
.status-pill.ongoing { background: #28a745; color: #fff; }
.status-pill.closing { background: #ffc107; color: #000; }
.status-pill.pacu { background: #17a2b8; color: #fff; }
.status-pill.emergency { background: #dc3545; color: #fff; }
.status-pill.done { background: #495057; color: #adb5bd; }

/* Status action buttons group */
.status-actions {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.status-actions .btn {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ============================================
   TOGGLE SWITCH (Telegram ON/OFF)
   ============================================ */

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6c757d;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #28a745;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 700;
}

.toggle-label.toggle-on {
    color: #28a745;
}

/* Module Switch Cards */
.module-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s;
}
.module-switch.disabled {
    opacity: 0.5;
    background: #f0f0f0;
}
.module-switch-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.module-switch-desc {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.toggle-label.toggle-off {
    color: #b0b0c0;
}

/* Toast notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 14px;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
    max-width: 350px;
}

.toast.success { border-left: 4px solid #28a745; }
.toast.error { border-left: 4px solid #dc3545; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

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

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #1a1a2e;
}

/* ============================================
   ALERT CARDS (Admin Panel)
   ============================================ */

.alert-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: box-shadow 0.15s;
}

.alert-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.alert-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.alert-card-severity {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.alert-card-type {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-card-time {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.alert-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.alert-card-message {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
    white-space: pre-line;
}

.alert-card-actions {
    display: flex;
    gap: 8px;
}
