@charset "utf-8";

/* 웹폰트는 이 위치에 넣어서 불러옵니다. */
@font-face {
  font-family: 'Pretendard Variable';
  src: url('../../../packages/pretendard/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 400;
  font-style: normal;
}

/* 웹폰트는 이 위치에 넣어서 불러옵니다. */

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    
}

*{
  margin: 0; padding: 0;
  border: 0;
  font-size: 100%; font: inherit;
  vertical-align: baseline;
  font-family: "Pretendard Variable", sans-serif;
  color: black;
}

img.logicon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#send-button, #saveButton {
            padding: 5px;
            font-size: 16px;
            background: none;
            border: none;
            cursor: pointer;
            color: black;
            vertical-align: middle;
            padding: 10px 20px;
}

  body{
    width: 100%;
    height: 100%;
    background-color: gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

    .inputbox{
      outline: solid 2px black;
      background-color: white;
      width: 900px;
      height: 240px;
      border-radius: 15px;
      line-height: 140%;
      margin: 5px 0px 5px 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      overflow-y: auto;
      z-index: 2;
  }

.logbox{
      outline: solid 2px black;
      background-color: white;
      width: 900px;
      height: 500px;
      border-radius: 15px;
      line-height: 140%;
      margin: 5px 0px 5px 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      overflow-y: auto;
      z-index: 2;
  }

@media(max-width: 1000px){  
    .inputbox{
      width: 100%;
      margin: 5px 0px 5px 0px;
  } 
  .logbox{
      width: 100%;
      margin: 5px 0px 5px 0px;
  }

  .loglist-container {
    width: 100%;
    margin: 20px;
    padding: 20px;
    background: white;
   }
}

  .align{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
    #pageTitle {
      width: 100%;
      font-size: 20px;
      font-weight: bold;
      color: #333;
      display: block;
      text-align: center;
    }

    .pagealign{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 0 5px 0;
    }

    
.input-container {
  width: auto;
  height: 240px;
  padding: 20px;
  background: white;
 }
 
 .loglist-container {
  width: 80%;
  margin: 20px;
  padding: 20px;
  background: white;
 }

 form {
  display: flex;
  flex-direction: column;
  gap: 10px;
 }
 
 select, input, textarea {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
 }
 
 
 ul {
  list-style: none;
  padding: 0;
 }
 
 li {
  margin: 10px 0;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
 }
 
 textarea {
    resize: none;
    box-sizing: border-box; /* 패딩과 테두리를 포함한 크기 계산 */
  }
 
 input {
    width: 100%;
    resize: none;
 }
 
 .parent {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
 }

 .logarea {
   width: 100%;
   height: 500px;
   display: flex;
   justify-content: center;
   overflow-x: hidden;
   overflow-y: auto; /* 세로 스크롤만 허용 (내용이 넘칠 때만 스크롤) */
  }

 .nametext {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  margin: 2px 2px 5px 2px;
  white-space: pre-wrap;
  word-break: break-all;
 }
 
 .messagetext {
   width: 100%;
   font-weight: normal;
   font-size: 16px;
   margin: 2px 2px 5px 2px;
   line-height: 140%;
   white-space: pre-wrap;
   word-break: break-all;
 }