/* =========================
   TOAST NORMAL (GLOBAL)
========================= */
.af-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.af-toast {
    background: #111;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    min-width: 260px;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: af-toast-in .25s ease-out forwards;
}

/* =========================
   CONFIRM MODE (SOLO ESTE)
========================= */
.af-toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
}

.af-toast.af-toast-confirm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
    max-width: 420px;
}

/* Acciones */
.af-toast-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}
