/* ===============================================
   TOAST NOTIFICATIONS - MEJORAS
   =============================================== */

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 20px;
    flex-shrink: 0;
}

.toast span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

/* Toast tipos */
.toast-success {
    border-left: 4px solid var(--success, #28a745);
}

.toast-success i {
    color: var(--success, #28a745);
}

.toast-error {
    border-left: 4px solid var(--danger, #dc3545);
}

.toast-error i {
    color: var(--danger, #dc3545);
}

.toast-warning {
    border-left: 4px solid var(--warning, #ffc107);
}

.toast-warning i {
    color: var(--warning, #ffc107);
}

.toast-info {
    border-left: 4px solid var(--primary, #007bff);
}

.toast-info i {
    color: var(--primary, #007bff);
}
