﻿#toasts {
    position: fixed;
    overflow-y: clip;
    width: 300px;
    border: 0px;
    right: 10px;
    bottom: 10px;
    z-index: 10010000;
    pointer-events: none;
}

.toast {
    min-height: 50px;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    padding-left: 48px;
}

    /* Info (default) */
    .toast.toast-info {
        background-color: var(--white);
        border: 1px solid #bee5eb;
        color: var(--text-color);
    }

    /* Success */
    .toast.toast-success {
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        color: #155724;
    }

    /* Error */
    .toast.toast-error {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
    }

    /* Warning */
    .toast.toast-warning {
        background-color: #fff3cd;
        border: 1px solid #ffeaa7;
        color: #856404;
    }

    /* Icons */
    .toast::before {
        position: absolute;
        left: 12px;
        top: 12px;
        font-size: 20px;
    }

    .toast.toast-info::before {
        content: "ℹ️";
    }

    .toast.toast-success::before {
        content: "✅";
    }

    .toast.toast-error::before {
        content: "❌";
    }

    .toast.toast-warning::before {
        content: "⚠️";
    }

.toast-title {
    font-weight: bold;
    margin-bottom: 4px;
}

.toast-body {
    opacity: 0.9;
}
