.exclusao-toast-stack {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: min(420px, calc(100vw - 32px));
    pointer-events: none;
}

.exclusao-toast {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #c1272d;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.15);
    padding: 14px 40px 14px 14px;
    pointer-events: auto;
    animation: exclusao-toast-in 0.25s ease-out;
}

.exclusao-toast-erro {
    border-left-color: #c1272d;
}

.exclusao-toast-sucesso {
    border-left-color: #198754;
}

.exclusao-toast-body {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #212529;
}

.exclusao-toast-body strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #c1272d;
}

.exclusao-toast-sucesso .exclusao-toast-body strong {
    color: #198754;
}

.exclusao-toast-body p {
    margin: 0 0 0.5rem;
}

.exclusao-toast-body ul {
    margin: 0 0 0.5rem 1.1rem;
    padding: 0;
}

.exclusao-toast-body li {
    margin-bottom: 0.2rem;
}

.exclusao-toast-hint {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 0 !important;
}

.exclusao-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #6c757d;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.exclusao-toast-close:hover {
    background: #f1f3f5;
    color: #212529;
}

.exclusao-toast.is-leaving {
    animation: exclusao-toast-out 0.2s ease-in forwards;
}

@keyframes exclusao-toast-in {
    from {
        opacity: 0;
        transform: translateX(16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes exclusao-toast-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(16px);
    }
}

@media (max-width: 480px) {
    .exclusao-toast-stack {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
