﻿.toast-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .toast-container.top-left {
        top: 1rem;
        left: 1rem;
        align-items: flex-start;
    }

    .toast-container.top-right {
        top: 1rem;
        right: 1rem;
        align-items: flex-end;
    }

    .toast-container.bottom-left {
        bottom: 1rem;
        left: 1rem;
        align-items: flex-start;
    }

    .toast-container.bottom-right {
        bottom: 1rem;
        right: 1rem;
        align-items: flex-end;
    }

    .toast-container.top-center {
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
    }

    .toast-container.bottom-center {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
    }

.fluent-toast {
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    animation: fadeInOut 4s ease-in-out;
    min-width: 200px;
    max-width: 400px;
}

    .fluent-toast.success {
        background-color: #107c10;
    }

    .fluent-toast.info {
        background-color: #0078d4;
    }

    .fluent-toast.warning {
        background-color: #ffaa44;
    }

    .fluent-toast.error {
        background-color: #d13438;
    }
/*
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}
*/