#blazor-error-ui {
    display: none !important;
}

.red_message {
    color: #ff0000;
    font-weight: bold;
}

#toast-root {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    
}

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideInRight 0.3s ease-out;
}


/*@keyframes snackbarSlide {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-snackbar {
    animation: snackbarSlide 0.35s ease-out;
}*/


/*.toast {
    position: fixed;
    top: 84px;*/ /* below top bar */
    /*left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 420px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
}*/


/* TYPES */
/*.toast.success {
    background: #16a34a;
    color: #ffffff;
}

.toast.error {
    background: #dc2626;
    color: #ffffff;
}

.toast.info {
    background: #2563eb;
    color: #ffffff;
}*/
