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

.notifier-toast {
    min-width: 250px;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateX(0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notifier-toast.success {
    background-color: #28a745;
}

.notifier-toast.warning {
    background-color: #ffc107;
    color: #333;
}

.notifier-toast.error {
    background-color: #dc3545;
}

.notifier-toast.fade-out {
    opacity: 0;
    transform: translateX(100%);
}

.notifier-close {
    cursor: pointer;
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}
