::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background: var(--pit-line-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--pit-mut);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pit-ink);
}

/* Hide Blazorise license banner */
#blazorise-license-banner-host {
    display: none !important;
}

#blazorise-license-banner-host{
    display:none !important;
}

/* New notification animation */
@keyframes slideInAndPulse {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 3px rgba(228, 0, 43, 0.35);
    }
    50% {
        box-shadow: 0 0 10px rgba(228, 0, 43, 0.65);
    }
}

.new-notification {
    animation: slideInAndPulse 0.4s ease-out, subtleGlow 1.5s ease-in-out 2;
    animation-fill-mode: both;
}

.new-notification-entering {
    animation: slideInAndPulse 0.4s ease-out;
}

