#secuseek-delete-modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
#secuseek-delete-modal .secuseek-delete-modal-content {
    background: #fff;
    max-width: 400px;
    width: 90%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px #0002;
    position: relative;
    text-align: left;
}
#secuseek-delete-modal h2 {
    margin-top: 0;
    font-size: 22px;
    color: #d63638;
}
#secuseek-delete-modal p {
    margin: 15px 0 20px 0;
    color: #333;
}
.secuseek-delete-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    font-size: 15px;
}
.secuseek-delete-modal-actions {
    margin-top: 20px;
    text-align: right;
}
#secuseek-delete-modal .button-danger {
    background: #d63638;
    color: #fff;
    border: none;
    margin-left: 10px;
}
#secuseek-delete-modal .button-danger[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
#secuseek-delete-modal .button {
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    background: #eee;
    color: #222;
    cursor: pointer;
    transition: background 0.2s;
}
#secuseek-delete-modal .button:hover:not([disabled]) {
    background: #ccc;
} 