﻿.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1050;
    /*max-width: 600px;*/ /* Imposta una larghezza massima per evitare che diventi troppo grande su schermi larghi */
    width:90%;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
}

.toast-text {
    background-color: #f8f9fa;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0.25rem;
    /*padding: 0.75rem 1.25rem;*/
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}

.toast-success {
    border-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

.toast-danger {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.toast-warning {
    border-color: #ffc107;
    background-color: #fff3cd;
    color: #856404;
}
