#toast-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Estilo base do toast */
.toast-erros {
    position: relative;
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: sans-serif;
    max-width: 360px;
    min-width: 260px;
    animation: fadeOutToast 0.5s ease-in-out forwards;
    animation-delay: 6s;
    opacity: 1;
}

.toast-erros.success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.toast-erros.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

.toast-erros.warn {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.toast-erros strong {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: bold;
}

.toast-erros svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
}

.toast-erros ul {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
}

.toast-erros .btn-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes fadeOutToast {
    to {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}
