#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 420px;
}

.toast-notification {
    min-width: 280px;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    opacity: 1;
    transition: opacity .3s ease;
    cursor: default;
    margin-bottom: 0;
}

.toast-notification.toast-hide {
    opacity: 0;
}
