        /* Simple Bounce Animation for the School Icon */
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
        }
    }

/* Student Auth — sign-in error toasts: clear red (overrides theme toastr) */
#toast-container > .toast.toast-error {
    background-color: #dc2626 !important;
    background-image: none !important;
    border: 1px solid #b91c1c;
    color: #fff !important;
}

#toast-container > .toast.toast-error .toast-title,
#toast-container > .toast.toast-error .toast-message {
    color: #fff !important;
}

#toast-container > .toast.toast-error .toast-close-button {
    color: #fff;
    text-shadow: none;
    opacity: 0.92;
}

#toast-container > .toast.toast-error .toast-close-button:hover,
#toast-container > .toast.toast-error .toast-close-button:focus {
    color: #fecaca;
    opacity: 1;
}

#toast-container > .toast.toast-error:before {
    color: #fecaca;
}

#toast-container > .toast.toast-error .toast-progress {
    background-color: #fecaca;
    opacity: 0.55;
}
