#ag4ot-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ag4ot-bg-color, #000000);
    opacity: var(--ag4ot-opacity, 0.9);
    z-index: 2147483646;
}

#ag4ot-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--ag4ot-box-color, #ffffff);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    z-index: 2147483647;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#ag4ot-modal h2 {
    margin: 0 0 20px 0;
    color: var(--ag4ot-text-color, #333333);
    font-size: 24px;
}

#ag4ot-modal p {
    margin: 0 0 30px 0;
    color: var(--ag4ot-text-color, #333333);
    font-size: 16px;
    line-height: 1.5;
}

.ag4ot-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ag4ot-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ag4ot-btn:hover {
    opacity: 0.85;
}

.ag4ot-btn-yes {
    background-color: var(--ag4ot-btn-color, #2c3e50);
    color: var(--ag4ot-btn-text-color, #ffffff);
}

.ag4ot-btn-no {
    background-color: #cccccc;
    color: #333333;
}

body.ag4ot-locked {
    overflow: hidden;
}