/* LİKİDASYON KRİTİK UYARI ANİMASYONU */
@keyframes critical-flash {
    0% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0px #e74c3c;
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
        text-shadow: 0 0 10px #e74c3c;
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0px #e74c3c;
    }
}

.critical-flash {
    animation: critical-flash 0.8s infinite ease-in-out !important;
    color: #e74c3c !important;
    font-weight: 800 !important;
}

.margin-status-info {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}