/* 1. Main Titles (The "Knowledge" & "Management" headers) */
h2 {
    text-transform: uppercase !important;
    letter-spacing: 0.3em !important;
    font-weight: 900 !important;
    color: #ff4d4d !important; /* Brighter red for readability */
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6) !important;
    border-left: 4px solid #ff0000 !important;
    padding-left: 15px !important;
}

/* 2. Card Hover Effect (The "Glow") */
.card:hover {
    transform: translateY(-5px) !important;
    border-color: #ff0000 !important; /* Pure Red */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3) !important;
}

/* 3. The Status Dot (Make it a Red Alert pulse) */
.status-dot {
    background-color: #ff0000 !important;
    box-shadow: 0 0 8px #ff0000 !important;
    animation: redPulse 1.5s infinite !important;
}

@keyframes redPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* 4. Scrollbar (Red accent) */
::-webkit-scrollbar-thumb {
    background: #991b1b !important; /* Dark Red */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000 !important;
}

/* 5. Resource Widget Bars (CPU/RAM bars) */
/* This targets the progress bars if they are showing */
.bg-sky-500, .bg-blue-500 {
    background-color: #b91c1c !important; /* Tailwind 'red-700' */
}
