.chat {
  position: fixed;
  top: 100px;
  right: 100px;
  width: 300px;
  user-select: none;
  z-index: 1000;
}

.chat video {
  width: 100%;
}

.chat-buttons-container {
  width: 100%;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #445c95;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-buttons-container i {
  margin: 8px;
  font-size: 1.5em;
  cursor: pointer;
  width: 30px;
  text-align: center;
  color: #445c95;
}

.chat select {
  background-color: #eaecf1;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  width: 100%;
  display: block;
  margin-top: 0.5em;
  outline: none;
  padding: 0.5em;
  font-size: 0.75em;
}

.chat-prompt {
  text-align: center;
  animation: bounce 0.5s infinite alternate;
  padding: 8px 0;
}

.chat-prompt button {
  width: calc(50% - 3px);
  display: inline;
  margin: 0;
}

.chat-buttons {
  padding: 8px 0;
}

.chat-buttons button {
  margin: 0;
  display: inline;
  width: 100%;
}

.status-icon {
  position: absolute;
  right: 0;
  cursor: default !important;
}

.red {
  color: red !important;
}

.green {
  color: green !important;
}

@keyframes bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.25);
  }
}

.text-entry-container {
  border: 1px solid black;
  padding: 0.25em;
  line-height: 1em;
  height: calc(5em + 0.5em);
  overflow-y: scroll;
}

.text-entry-container.expanded {
  height: calc(10em + 0.5em);
}

.text-entry {
  font-size: 0.8em;
  user-select: text;
}

.text-entry:not(.mine) {
  color: #0e2e7c;
}

.text-user-label {
  font-weight: bold;
}

.text-date {
  opacity: 0.75;
}

.text-input-container {
  display: flex;
  margin-top: 0.1em;
}

.text-input-container input {
  flex: 1;
  margin: 0 0.1em;
}

.text-input-container button {
  background-color: #445c95;
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: 0.3s;
  border: none;
  outline: none;
}

.text-input-container button:hover {
  background-color: #0e2e7c;
  cursor: pointer;
}

.text-input-container .text-chat-expand {
  width: 2em;
}