<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mobile version */
@media screen and (max-width: 1300px) {
    .content {
        min-height: 1200px;
    }

    .lobby {
        display: grid;
        grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
        grid-template-rows: 1fr 1fr;
        grid-gap: 20px;
    }

    .main-block {
        order: 2;
        grid-column: 1 / -1;
    }

    .playlist__tracks {
        text-align: center;
    }

    .playlist__input {
        text-align: center;
    }

    .users {
        margin-right: 0;
    }

    .sign-form {
        width: 100%;
        margin: 100px auto;
    }
}

@media screen and (max-width: 750px) {
    html {
        font-size: 12px;
    }

    .lobby {
        display: flex;
        flex-direction: column;
    }

    .content {
        min-height: 1500px;
    }

    .block {
        flex-grow: 2;
    }

    .main-block {
        flex-grow: 3;
    }

    .sidebar {
        width: 200px;
        left: -250px;
    }

    .dropdown-content a {
        padding: 4px;
        font-size: 12px;
    }

    .openbtn {
        max-width: 20px;
        top: 40px;
        left: 20px;
    }

    #toast-container &gt; div {
        width: 280px;
    }

    .line-1,
    .line-2,
    .line-3,
    .line-4,
    .line-5 {
        width: 3px;
    }

    .track__playButton {
        padding: 12px;
    }

    .box {
        width: 31px;
    }

    .box,
    .line-1,
    .line-2,
    .line-3,
    .line-4,
    .line-5 {
        height: 39px;
    }

    .search-result__thumbnail {
        max-width: 50px;
    }
}

@media screen and (max-width: 500px) {
    .playlist__track *,
    .search-result * {
        font-size: 1rem;
    }

    .track__playButton {
        padding: 9px;
    }

    .box,
    .line-1,
    .line-2,
    .line-3,
    .line-4,
    .line-5 {
        height: 33px;
    }
}
</pre></body></html>