#notification-container {
    position: fixed;
    top: 32px; 
    z-index: 99999;
    right: 20px;
    width: 300px;
}

.notification {
    background-color: #2271b1;
    color: white;
    padding: 16px;
    margin-bottom: 2px;
    border-radius: 0 !important; 
    position: relative;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.1);
    opacity: 1;
    transition: opacity 0.4s ease-out;
}


.notification .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 0 !important;
    text-align: center;
    font-size: 18px;
    color: white;
    cursor: pointer;
    border: none;
}

.notification .close-btn:hover {
    background-color: rgba(0,0,0,0.2);
}


.notification.note {
    background-color: #f0b849; /* Warning */
    color: #3c434a;
}
.notification.note .close-btn { color: #3c434a; }

.notification.n-error {
    background-color: #d63638; /* Error */
}

.notification.success {
    background-color: #00a32a; /* Success */
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification {
    animation: fadeInRight 0.3s ease-out;
}

.notification.close {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease-in;
}