.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.custom-modal-overlay.is-visible {
    display: flex;
}

.custom-modal-box {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    position: relative;
    border: 1px solid #E5E7EB;
}

.custom-modal-content {
    padding: 28px 24px 24px;
    text-align: center;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #6B7280;
    font-size: 24px;
    cursor: pointer;
    border-radius: 999px;
}

.custom-modal-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.modal-ok-btn {
    min-width: 140px;
    width: auto;
}
