.textarea-container {
    display: flex;
    flex-direction: column;
}

.textarea-container label {
    color: #3d4a5c;
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 4px;
}

.textarea-container textarea {
    color: #373a40;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    height: 102px;
    resize: none;
    border-radius: 6px;
    border-color: #afbaca;
    padding: 14px;
}

.textarea-desc {
    color: #868e96;
    font-size: 14px;
    font-weight: 400;
}

#readonly_content textarea {
    padding-top: 35px;
    background: linear-gradient(
        to bottom,
        white 0px,
        white 35px,
        transparent 35px
    );
    position: relative;
    z-index: 1;
}

#readonly_content::after {
    content: "";
    height: 40px;
    width: 100%;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    border: 1px solid #afbaca;
    border-radius: 6px 6px 0 0;
    border-bottom: 0;
    z-index: 1;
}
