    @keyframes p60DialogIn {
        from { opacity: 0; transform: scale(0.88) translateY(16px); }
        to   { opacity: 1; transform: scale(1)    translateY(0);    }
    }
    .p60-dlg-btn {
        flex: 1;
        padding: 12px 16px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Noto Sans KR', sans-serif;
        cursor: pointer;
        transition: all 0.18s;
        letter-spacing: 0.3px;
    }
    .p60-dlg-btn:active { transform: scale(0.96); }
    .p60-dlg-btn-ok {
        background: linear-gradient(135deg, #7c3aed, #a855f7);
        color: #fff;
        box-shadow: 0 4px 15px rgba(124,58,237,0.4);
    }
    .p60-dlg-btn-ok:hover { box-shadow: 0 6px 20px rgba(124,58,237,0.6); filter: brightness(1.1); }
    .p60-dlg-btn-cancel {
        background: rgba(255,255,255,0.06);
        color: #94a3b8;
        border: 1px solid rgba(255,255,255,0.12);
    }
    .p60-dlg-btn-cancel:hover { background: rgba(255,255,255,0.1); color: #e2e8f0; }
