﻿.status-message-container {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 450px;
}

.custom-alert {
    background-color: #a31f24;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    border-left: 5px solid #e67e22;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease-in-out;
}
