
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    z-index: 1000;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px 2px 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 200px;
    font-size: 0.9em;
}

.notification.success {
    background-color: #91cb9c;
}

.notification.info {
    background-color: #1E91EF;
}

.notification.error {
    background-color: #ef1f2a;
}

.notification button {
    padding: 2px 2px;
    margin-top: 0px;
}

.notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.reload_link {
    cursor: pointer;
}