/* Arka plan blur + tam ortalama */
.custom-modal {
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.25);
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* İçerik kutusu */
.custom-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    width: 90%;
    max-width: 650px;
    position: relative;
}

/* Diğer stilleriniz (değişmedi) */
.custom-model-content-2 {
    background: #f5f8fa;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    max-height: 500px;
    overflow-y: auto;
}

.custom-model-title {
    color: var(--black);
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
}

.custom-modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.modal-ok-btn {
    background: var(--theme-color-1);
    width: 150px;
    margin: 20px auto 0;
    color: var(--white);
    font-weight: 500;
    padding: 8px;
    border-radius: 50px;
    border: none;
    display: block;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.modal-ok-btn:hover {
    background: var(--theme-color-1);
    color: var(--white);
}