.custom-toast {
    min-width: 45vw;       
    max-width: 90vw;        
    width: auto;           
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    font-size: 14px;
    overflow: visible;     
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

.custom-toast .toast-body {
    overflow-x: auto;      
    max-height: 70vh;     
    overflow-y: auto; 
    padding: 0.9rem 1rem;
    background-color: #ffffff;
    color: #212529;
    font-size: 14px;
    line-height: 1.5;
}

.custom-toast .toast-header {
    font-weight: 500;
    border-bottom: none;
    padding: 0.6rem 1rem;
}

.custom-toast .btn-close {
    opacity: 0.6;
    transition: opacity 0.2s;
}
.custom-toast .btn-close:hover {
    opacity: 1;
}

/* 🎨 Paleta personalizada */
.toast-success .toast-header {
    background: #e6f7f1;
    color: #0f5132;
}
.toast-success i {
    color: #0f5132;
}

.toast-error .toast-header {
    background: #fdecea;
    color: #842029;
}
.toast-error i {
    color: #842029;
}

.toast-warning .toast-header {
    background: #fff4e5;
    color: #664d03;
}
.toast-warning i {
    color: #664d03;
}

/* Tablas dentro del toast */
.custom-toast .toast-body table {
    margin-bottom: 0;
}
.custom-toast .toast-body th,
.custom-toast .toast-body td {
    padding: 0.3rem 0.5rem;
    font-size: 13px;
}
