#webgl-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    box-shadow: none;
}

#webgl-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* === 4K EKRANI (2560px+) === */
@media (min-width: 2560px) 
{
    #webgl-button 
    {
        top: 50px;
        right: 50px;
        width: 65px;
        height: 65px;
    }
}

/* === 2K EKRANI (2000px – 2559px) === */
@media (min-width: 2000px) and (max-width: 2559px) {
    #webgl-button 
    {
        top: 50px;
        right: 50px;
        width: 65px;
        height: 65px;
    }
}

/* === FULL HD i MANJI (< 1999px) === */
@media (max-width: 1999px) {
    #webgl-button 
    {
        top: 35px;
        right: 35px;
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 1200px) {
    #webgl-button {
        top: 15px;
        right: 15px;
        width: 48px;
    }
}