.loader {
    width: 200px;
    margin: 0 auto;
}

#viewDiv {
    height: 500px;
    width: 100%;
    position: relative;
}

#customPopup {
    position: absolute;
    background-color: var(--white-color);
    border: 1px solid var(--input-border-color);
    padding: 8px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-bottom-left-radius: 0;
    margin-left: -5px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--gray-color);
}

#customPopup a {
    color: var(--links-geeen-color);
    text-decoration: none;
    font-weight: 700;
    pointer-events: auto;
}

#customPopup a:hover {
    text-decoration: underline;
}