
body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  background: rgb(232,228,228);
  background: linear-gradient(0deg, rgba(246, 245, 245,1) 0%, rgba(240,239,239,1) 100%) !important;
}

.unread{font-weight: bold}

.baged-gray{background-color:#6c757d;}
textarea{overflow:auto !important; resize:none !important}


.blink_me {
  animation: blinker 1s linear infinite;
}

.cuttext{
  text-overflow: ellipsis;
  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}

@keyframes blinker {
  50% {
    opacity: 0.3;
  }
}
