#toaster-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    /* When toast is shown */
    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* Toast exits to right */
    .toast.hide {
        opacity: 0;
        transform: translateX(100%);
    }

.toast-icon {
    font-size: 18px;
}

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

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

.toast.warning {
    background-color: #fce43f;
    color: #212529;
}

/* Button styles (for testing) */
.buttons {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
