/* ============================
TOAST GLOBAL
============================ */
.kannuh-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: #111;
    padding: 12px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 100000;
    pointer-events: none;
    font-weight: 600;
    min-width: 200px;
}

.kannuh-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.kannuh-toast.success{ border-left:4px solid #22c55e; }
.kannuh-toast.error{ border-left:4px solid #ef4444; }
.kannuh-toast.info{ border-left:4px solid #3b82f6; }

/* ------------------------------------
CONFIRM MODAL
------------------------------------ */
.kannuh-confirm-overlay{
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 999999;
}

.kannuh-confirm-box{
    background:white;
    border-radius:10px;
    padding:20px;
    width:320px;
    max-width:90%;
    text-align:center;
    font-family: sans-serif;
}

.kannuh-confirm-box p{ margin-bottom:20px; }

.kannuh-confirm-box .actions{
    display:flex;
    justify-content:space-around;
}

.kannuh-confirm-box button{
    padding:8px 14px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.kannuh-confirm-box .btn-ok{
    background:#22c55e;
    color:white;
}

.kannuh-confirm-box .btn-cancel{
    background:#ef4444;
    color:white;
}