/* © Anton Kalyuta 2022 - 2026 */
#updatedText {
    font-size: 20px;
    border: 5px solid #e6e9ee;
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
    width: 84vw;
    max-width: 84vw;
    height: max-content;
    min-height: 300px;
    font-family: monospace;
    color: #151f33;
    user-select: none;

    /*white-space: pre;*/
    background: white;
}

@media (max-device-width: 480px) {
    #updatedText {
        border-left: 0;
        border-right: 0;
        width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }
}

#previewText {
    background: #ef483cbf;
}

@media (max-device-width: 480px) {
    #text {
        min-height: 25vh;
    }
}
