﻿#toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    min-width: 220px;
    max-width: 350px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: 0.95;
    background: #2563eb;
    margin-bottom: 0.5rem;
    pointer-events: auto;
    transition: opacity 0.3s, transform 0.3s;
}

.toast-info {
    background: #4cff00;
}

.toast-warning {
    background: #ff6a00;
}

.toast-error {
    background: #ff0000;
}

.toast-hide {
    opacity: 0;
    transform: translateX(100%);
}
