.shoutbox-container {
  height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 5mm;
}

.shoutbox-messages {
  height: 90%;
  border: 2px solid #888;
  overflow-y: scroll;
}

.shoutbox-messages ol {
  margin: 0;
  padding: 0 2% 2% 0;
}

main .shoutbox-message {
  display: flex;
  overflow-wrap: anywhere;
  border-bottom: 2px dotted #888;
  text-align: left;
  line-height: 1.3;
}

.shoutbox-message p {
  margin: 0;
}
main .shoutbox-ui {
  padding: 1mm;
  display: flex;
  height: 100%;
  flex-direction: row;
  gap: 1mm;
  color: var(--light-text-color);
}

main .shoutbox-input {
  font-size: 1rem;
  color: var(--light-text-color);
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px solid var(--nav-color-darker-border);
  height: 100%;
  box-sizing: border-box;
  resize: none;
  margin: 0;
  padding: 0;
  width: 80%;
}
.shoutbox-send {
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  border: 2px solid var(--nav-color-darker-border);
  background-color: var(--accent-color);
  width: 20%;
  height: 100%;
}

.shoutbox-send button {
  padding: 0;
  cursor: pointer;
  font-family: "0xProto Nerd Font Mono";
  color: whitesmoke;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  border: none;
}

.shoutbox-send button:hover {
  background-color: rgba(100, 100, 100, 0.1);
}
