    #my-custom-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 99999;
        justify-content: center;
        align-items: center;
    }
    #my-custom-modal {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        min-width: 290px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }
    #custom-refresh-btn {
        padding: 0px 26px;
        font-size: 14px;
        font-weight: 500;
        background-color: #FFD75E;
        color: #000000;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }
    #custom-refresh-btn:hover {
        background-color: #FDE090;
    }