
/* =========================
   TOAST
   ========================= */

   #toast {
    position: fixed;
    top: 20px;
    left: 50%;
    background: #198754; /* success */
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.35s ease;
    z-index: 9999;
    pointer-events: none;
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Toast de error */
#toast.error {
    background: #cc0000;
}

/* Toast de advertencia */
#toast.warn {
    background: #ff9800;
}

