.alert-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 90%;
}

.alert-box {
    animation: fadeInSlide 0.4s ease-out;
    transition: all 0.5s ease-in-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
