  html, body {
    font-family: sans-serif;
    height:100%;
    padding:0;
    margin: 0;
  }

  body {
    display: flex;
    flex-direction: column;
    color: #333;
    background: white;
  }
    #chat {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }

  #fixedInputArea {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 1rem;
    border-top: 1px solid #eee;
    z-index: 10;
  }

    .msg {
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 75%;
    width: fit-content;
    line-height: 1.4;
    word-break: break-word;
  }
    .user {
    background-color: #fd8e10;
    color: white;
    margin-left: auto;
    text-align: right;
  }
    .bot {
    background-color: #eeeeee;
    color: #333;
    margin-right: auto;
  }

  #moreGroup {
    gap: 8px;
  }
    #quickChoicesLabel {
    font-weight: bold;
    color:#fd8e10;
    margin: 1.5rem 0 0.5rem 0;
  }

  #optionsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
  }
    #optionsContainer button {
    padding: 10px 16px;
    border: 1px solid #fd8e10;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  #optionsContainer button:hover {
    background: #f5f5f5;
    border-color: #fd8e10;
    color: #fd8e10;
  }
    #userInputContainer {
    display: flex;
    gap: 8px; 
  }

  #userInput {
    flex-grow: 1;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
   #userInput:focus {
    outline: none;
    border-color: #fd8e10;
  }

  #sendButton {
    background-color: #fd8e10;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  #sendButton:hover {
    background-color: #e27e00;
  }

/* More Information Content */

  .more-info-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0 0;
  }

  .more-info-object {
    display: flex;
    white-space: initial;
    gap: 24px;
    max-width: 560px;
  }

  .more-info-img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }
  .more-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .more-info-content ul {
    margin: 0;
    padding-left: 14px;
  }

/* Media Queries */
    @media (max-width: 600px) {
    #userInput, #sendButton {
      font-size: 1rem;
    }

    .more-info-object {
      flex-direction: column;
    }

    .more-info-img {
      width: 100%;
    }

    #optionsContainer button {
      font-size: 1rem;
      padding: 10px 14px;
    }
  }

  /* FIX Z-INDEX */
  .scroll-overlay {
    z-index: 9000 !important;
  }

  .modal-kibu {
    z-index: 9999 !important;
  }

  .modal {
    z-index: 9990 !important;
  }