body, html{
    margin: 0px 0px;
    justify-content: center;
    overflow: hidden;
    background-color: #ffed9c;
  }

  .chat-message{
    z-index: -1;
    font-family: arial;
    font-size: 0.5cm;
    clear:both;
    padding: 10px;
    border-radius: 0.3cm;
    max-width: 80% !important;
    margin-bottom: 10px;
    text-wrap: wrap;
     word-wrap: break-word
  }
  .chat-message.me{
    background-color: #ffc863;
    float: right;
    max-width: 80%;
    border-bottom-right-radius: 0.08cm;
  }
  .chat-message.other{
    background-color: lightgray;
    float: left;
    border-bottom-left-radius: 0.08cm;
  }
  .user{
    font-size: 0.4cm;
    font-family: Arial;
    clear: both;
    margin: 0px;
  }
  .user.me{
    float: right;
    margin-bottom: 2px;
    text-align: right;
    margin-right: 3px;
    
  }
  .user.other{
    float: left;
    margin-bottom: 2px;
    text-align: left;
    margin-left: 3px;

  }
  input{
    width: 100%;
  }
  #send-btn{
    position: absolute;
    z-index: 1000;
    /* right: var(--scrollwid); */
    right: 0;
    transform: translate(-20px , 20%);
    background-color: #ffffff00;
    padding: 0px 0px;
    border: none;
    float: right; 

  }
  ::-webkit-scrollbar {
    width: 0px;
  }

  ::-webkit-scrollbar-button {
  background: transparent;
    height: 0px;
  }
  ::-webkit-scrollbar-track-piece {
  background: transparent
  }
  ::-webkit-scrollbar-thumb {
  background: orange;
    transition: all 2s;

  }
  
  #send-btn:hover{
    background-color: #00000011;
  }
  .material-symbols-outlined{font-size: 2em; color: orange;
  margin: 0px 0px ;
      }
  p.connect{
    font-size: 0.4cm;
    font-family: Arial;
    margin: 0px 0px;
    color: gray;
    text-align: center;
    width: 100%;
    clear: both;
  }
  #content{
    padding-right: 12px;
    margin-top: 1px;
    padding: 8px;
    overflow-y: auto;
    height: calc(calc(100vh - 70px) - 2em);

    transition: mask-position 0.3s, -webkit-mask-position 0.3s;
    }
    #content:hover{
      padding-right: 4px;
    }
    #content:hover::-webkit-scrollbar {
      width: 4px;
    }
  .options{
    height: 2.05em;
    padding: 0.1em 0.2em;
    border-bottom: 1px solid lightgray;
    display: flex;
    /* border: 1px solid black; */

  }
  .mute{
    padding: 0px 0px;
    height: 1.8em;
    background-color: #ffffff00;
    border: none;
  }
  .mute:hover{
    background-color: #00000011;
  }
  .mute:focus{
    background-color: #00000022 !important;
  }
  .mute:active{
    background-color: #00000022 !important;
  }
  .mute .material-symbols-outlined{
    font-size: 1.8em;
    margin: 0px;
  }
  #user-input:focus{
    box-shadow: 0px 0px 0px 4px #ffa50099;
    /* outline: none; */
  }
  footer{
    height: 70px;
  }
  #user-box{
    margin: 2px 5px;
    border-radius: 5px;
    border: 1px solid gray;
    padding: 3px;
  }
  .divider{
    border-top: 1px solid #ffd400;
    width: 100vw;
    height: 0px;
    z-index: 1000;
    transform: translate(0px, -13px)
  }