﻿.update-toast-wrapper {
    /* Empty but receives the scope attribute */
}

.update-toast-overlay {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 400px;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.update-toast-overlay .alert {
    margin-bottom: 0;
    border-radius: 8px;
}
