﻿/* blazored-toast.css */
.blazored-toast-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

.blazored-toast {
    pointer-events: auto;
    margin: .5rem;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-size: 0.875rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.blazored-toast-info {
    background-color: #3498db;
}

.blazored-toast-success {
    background-color: #2ecc71;
}

.blazored-toast-warning {
    background-color: #f1c40f;
    color: #000;
}

.blazored-toast-error {
    background-color: #e74c3c;
}

.blazored-toast-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    margin-top: .5rem;
    border-radius: 2px;
}
