/* ⭐ خط النظام */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar-brand {
    font-weight: 600;
}

.card-title {
    font-weight: 600;
}

/* ⭐ وميض التنبيه العام */
.blinking-alert {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.2; }
    100% { opacity: 1; }
}

/* ⭐ وميض الصف */
.highlight-blink td {
    background-color: #ffcccc !important;
    animation: blinkRow 1s infinite ease-in-out !important;
    border-left: 4px solid #ff4444 !important;
}

/* ⭐ حركة الوميض */
@keyframes blinkRow {
    0%   { background-color: #ffcccc; }
    50%  { background-color: #ffe6e6; }
    100% { background-color: #ffcccc; }
}

/* ⭐ هزّة */
.shake td {
    animation: shakeEffect 0.4s infinite;
}

@keyframes shakeEffect {
    0%   { transform: translateX(0px); }
    25%  { transform: translateX(-3px); }
    50%  { transform: translateX(3px); }
    100% { transform: translateX(0px); }
}
