﻿/* Toast container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast style */
.toast {
    min-width: 220px;
    max-width: 300px;
    background-color: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

    /* Show toast animation */
    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* Success toast */
    .toast.success {
        background-color: #28a745;
    }

    /* Error toast */
    .toast.error {
        background-color: #dc3545;
    }

    /* Info toast */
    .toast.info {
        background-color: #007bff;
    }

    /* Warning toast */
    .toast.warning {
        background-color: #ffc107;
        color: #000;
    }