#sisgcoe-confirm-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.62);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    backdrop-filter:blur(4px);
}

.sisgcoe-confirm-box{
    width:100%;
    max-width:420px;
    background:var(--bg-surface,#fff);
    color:var(--text-main,#1f2937);
    border:1px solid var(--border-soft,#dbe2ea);
    border-radius:22px;
    padding:24px;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.sisgcoe-confirm-box h3{
    margin:0 0 10px;
    color:var(--text-strong,#111827);
    font-size:22px;
}

.sisgcoe-confirm-box p{
    margin:0 0 22px;
    color:var(--text-muted,#64748b);
    line-height:1.5;
    font-weight:600;
}

.sisgcoe-confirm-acoes{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.sisgcoe-confirm-acoes button{
    border:none;
    border-radius:12px;
    padding:11px 16px;
    font-weight:800;
    cursor:pointer;
}

#sisgcoe-confirm-cancelar{
    background:var(--bg-surface-soft,#f8fafc);
    color:var(--text-main,#1f2937);
    border:1px solid var(--border-soft,#dbe2ea);
}

#sisgcoe-confirm-confirmar{
    background:#dc2626;
    color:white;
}