.chatbox {
/*  background-color: #eee; */
/*  width: 200px;
  height: 100px;
  border: 1px dotted black;*/
  overflow-y: scroll; /* Add the ability to scroll */
  height: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.chatbox::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.chatbox {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

       textarea {
            width: 99%;
            height: 36px;
            resize: vertical;
            padding: 3px;
            font-size: 16px;
        }

@keyframes flashColor {
    0%, 100% {
        color: gray;
    }
    50% {
        color: #f0ad4e;
    }
}

.icon-flash {
    animation: flashColor 1.5s infinite ease-in-out;
}

        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.25;
            }

            100% {
                opacity: 1;
            }
        }

        .blinking-text {
            color: lightgray;
            animation: blink 2s infinite;
        }

