
/* Мобильная версия */
@media (max-width: 768px) {
    body {
        color: white;
    }

    .wrapper {
        background-color: rgb(48, 48, 48);
        flex-direction: column;
    }

    .nav {
        display: none;
    }

    .container {
        height: 100vh;
        padding: 0;
        
    }

    .contain-fun {
        height: calc(100vh - 80px);
    }

    h1 {
        margin:  0;
        padding: 14px 0;
        background-color: rgb(48, 48, 48);
        font-size: 20px;
        color: white;
        font-weight: 500;
    }

    #content-container{
        background-color: rgb(48, 48, 48);
        height: 100%;
    }

    .messageUser {
        background-color: #4e4e4e;
        color: white;
        margin: 10px 0;
    }

    .dialog-content {

        height: 100%;

    }

    .input-block {
        height: auto;
        padding: 8px 10px 8px 15px;
        border: none;
        border-radius: 0;
        background-color: rgb(44, 44, 44);
        margin: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .output {
        padding: 20px;
        padding-bottom: 80px;
        margin-bottom: 50px;
    }

    .input::placeholder {
        font-size: 16px;
    }

    .input:focus::placeholder {
        opacity: 0;
    }

    .input {
        background-color:  rgb(44, 44, 44);
        color: white;
    }

    .btn {
        padding: 6px;
        background-color: #3f3f3f;
    }

    .send-img {
        width: 25px;
        height: 25px;
    }

    .copy-block {
        display: none;
    }
}