.confirm-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    visibility: hidden;
    z-index: 9999;
}

.confirm-overlay[aria-hidden="false"] {
    visibility: visible;
}

.confirm-dialog {
    background: white;
    padding: 1.25rem;
    border-radius: 5px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.confirm-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: end;
    gap: .4rem; 
}

.confirm-actions button {
    padding: 0.25rem .75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.confirm-actions button:hover {
    opacity: 0.9;
}

.confirm-actions .btn-ok {
    background: #346132;
    color: white;
}

.confirm-actions .btn-cancel {
    background: #ccc;
}

.confirm-actions .btn-ok.btn-confirm {
    background: #346132;
    color: #fff;
}

.confirm-actions .btn-ok.btn-yes {
    background: #346132;
    color: #fff;
}

.confirm-actions .btn-ok.btn-delete {
    background: #dc3545;
    color: #fff;
}
