.left {
  flex: 1;
}

.middle {
  flex: 2;
}

.logs {
  background-color: white;
  padding: 10px;
  border: 2px solid #c9e5ff;
}

.sticker:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 24px;
}

.logs p {
  display: block;
  text-align: left;
  line-height: 1.5;
}

.logs button {
  font-family: inherit;
  border: none;
  background-color: white;
  color: deeppink
}

.logs button:hover {
  cursor: pointer;
}

.main {
  font-weight: bold;
}

.meta p {
  text-align: left;
  margin: 0;
  font-size: smaller;
}

.row {
  display: flex;
}

.channels {
  min-width: 100px;
  max-width: 150px;
  background-color: #c9e5ff;
  border: 2px solid #c9e5ff;
  max-height: 200px;
  overflow-y: auto;
}

.external {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.external button {
  color: black;
  border: 2px solid #c9e5ff;
  background-color: white;
  padding: 5px;
  font-family: inherit;
}

.external button:hover {
  opacity: 70%;
  cursor: pointer;
}

.oc-chat {
  padding: 10px;
  max-height: 170px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 2px solid #c9e5ff;
}

.oc-chat p {
  line-height: 1;
  font-size: smaller;
}

.chat-line {
  gap: 30px;
}

.chat-line.from-self p {
  text-align: right;
}

.chat-line.from-self .bubble {
  float: right;
}

.bubble {
  max-width: fit-content;
  padding: 6px 12px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fff, #cce0ff);
  font-size: small;
}

.bottom {
  background-color: white;
  width: 100%;
  height: 30px;
  border: 2px solid #c9e5ff;
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.type {
  background-color: white;
  width: 100%;
  height: 100%;
  border: none;
  font-family: inherit;
  padding: 10px;
}

.sender {
  font-size: smaller;
}

.hina {
  color: orange;
}

.miki {
  color: #9966ff;
}

.yuki {
  color: #6699ff;
}

.gumi {
  color: #0fbfbf;
}

.karin {
  color: #d91010;
}

.hiro {
  color: #e9ae1a;
}

.rie {
  color: black;
}

.akira {
  color: #49b159;
}

.naoki {
  color: #464fa0;
}

.koji {
  color: #9e251f;
}

.content {
  border: 2px solid #c9e5ff;
}

.title {
  font-family: 'Love Ya Like A Sister';
  letter-spacing: 10px;
  background: linear-gradient(
    90deg,
    red,
    orange,
    rgb(255, 230, 0),
    rgb(25, 255, 25),
    cyan,
    rgb(90, 25, 252),
    rgb(252, 71, 252),
    red
  );
  background-size: 50% 20%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: -1px -1px 4px white;
}

.oc-chat.hidden {
  display: none;
}

.diary {
  max-height: 300px;
  overflow-y: auto;
}

.friend:hover {
  cursor: pointer;
}

.log {
  margin-bottom: 10px;
}

.log:not(:last-child)  {
  border-bottom: 5px dashed #99ccff;
  border-image: url('decor/rainbow_heart.png') 30 round;
}

.date, .entry {
  text-align: left;
  margin-bottom: 5px;
}

.date {
  color: #99ccff;
  margin-bottom: 0px;
}

@media (max-width: 750px) {
  .middle {
    order: 2;
  }

  .left {
    order: 1;
  }
}