#notification-container {
    position: fixed;
    top: 60px;
    /* right: calc(50vw - 150px); */
    right: 10px;
    width: 300px;
    z-index: 9999;
}

.notification {
    background-color: #fff;
    color: black;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
    border-left: var(--brand-primary-dark) 4px solid;
}

.notification.alert-danger {
    border-left: var(--brand-error) 4px solid;
}

.notification .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
