
    /* 스크롤바 너비 조절 */
    ::-webkit-scrollbar {
      width: 2px; /* 원하는 너비로 설정 */
    }

    ::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.3); /* 스크롤바 색상 */
      border-radius: 2px;
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }
    
        @font-face {
      font-family: 'Pretendard-Regular';
      src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Pretendard-Regular';
    }

    body {
      background: #ddd;
    }

    .wrapper {
      width: 320px;
      height: 360px;
      background: white;
      padding: 15px;
      overflow-y: auto;
      position: absolute;
      top: 0;
      left: 0;
    }

    input, textarea {
      width: 100%;
      margin-bottom: 5px;
      padding: 5px;
      font-size: 12px;
    }

    textarea {
      resize: none;
      height: 60px;
    }

    button {
      font-size: 12px;
      padding: 5px;
      cursor: pointer;
      background: none;
      border: 1px solid gray;
      margin-top: 5px;
    }

    .entry {
      border-top: 1px dashed gray;
      padding: 5px 0;
      margin-top: 5px;
    }

    .name {
      font-weight: bold;
      color: #FE7743;
      margin: 10px 0 0 10px;
      font-size: 14px;
    }

    .message {
      white-space: pre-wrap;
      word-break: break-word;
      margin: 10px;
      font-size: 14px;
    }

    .time {
      font-size: 10px;
      color: gray;
      text-align: right;
    }