    #chat {
      flex: 1;
      display: flex;
      flex-direction: column;
      background: #36393f;
    }

    #messages {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .msg {
      background: #32353b;
      color: #dcddde;
      padding: 8px 12px;
      border-radius: 6px;
      max-width: 70%;
      font-size: 14px;
      line-height: 1.4;
    }
    .msg .time {
      font-size: 10px;
      color: #72767d;
      margin-top: 2px;
    }

