body {

}

.link-icon {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .text-area-scrollbar {
        cursor: default;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100px;
        border: 1px solid #9E9E9E;
        border-radius: 5px;
        width: 100%;
        outline: none;
        resize: none;
        transition: all 0.3s ease;
        padding: 5px;

    }
    .text-area-scrollbar:focus {
        border: 1px solid #59646F;
        box-shadow: 0 0 0 1px #59646F;
    }
}

@media screen and (min-width: 768px) {
    .text-area-scrollbar {
        cursor: default;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
        width: 100%
    }
}
