#online-visitors-counter {
    z-index: 100;
    height: 50px;
    position: fixed;
    top: 10px;
    left: 10px;
    cursor: pointer;
    color: rgb(141, 192, 227);
    font-size: 15px;
    padding: 10px;
    text-decoration: none;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    flex-direction: row-reverse;
    border-radius: 10px;
    width: fit-content;
}

#online-visitors-list {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 70%;
    border-radius: 8px;
    border: 3px solid rgb(141, 192, 227);
    position: fixed;
    z-index: 100001;
    overflow-y: scroll;
    background-color: white;
    color: var(--background-color);
    padding: 10px;
}


@media (max-width: 576px) {

    #online-visitors-counter {
        padding: 0px 10px;
        height: 40px;
    }
    
    #online-visitors-list {
        width: 90%;
        height: 70%;
    }
}
