﻿/* Blazored Toast Styles - Local Copy */
.blazored-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 500px;
}

.blazored-toast {
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    animation: slideIn 0.3s ease-in-out;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.blazored-toast.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.blazored-toast.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.blazored-toast.info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.blazored-toast.warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.blazored-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.blazored-toast-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.blazored-toast.removing {
    animation: slideOut 0.3s ease-in-out forwards;
}

