@charset "UTF-8";
body {
  background-color: #cccccc;
}

td {
  font-family: 맑은 고딕, 돋움;
  font-size: 9pt;
  color: #000000;
  font-weight: none;
  letter-spacing: 0;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 150%;
}

a {
  font-size: 10pt;
  color: #bbbbbb;
  font-weight: bold;
  letter-spacing: 0;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 150%;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: orange;
}

.title {
  font-family: 맑은 고딕, 돋움;
  font-size: 17pt;
  color: 6699bb;
  font-weight: bold;
  text-decoration: underline;
  letter-spacing: 5;
  margin-left: 10px;
  margin-top: 50px;
  margin-bottom: 0px;
  line-height: 150%;
}

.email {
  font-size: 9pt;
  font-weight: bold;
  text-decoration: underline;
  letter-spacing: 0;
  margin: 0;
}

.main_border {
  border-style: solid;
  border-width: 1px;
}

.chatbot_container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  font-family: 맑은 고딕, 돋움;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.chatbot_toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background-color: #4682b4;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chatbot_panel {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 300px;
  height: 400px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.chatbot_header {
  background-color: #4682b4;
  color: white;
  padding: 10px;
  font-weight: bold;
  font-size: 10pt;
}

.chatbot_messages {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  font-size: 9pt;
}

.chatbot_msg {
  margin: 6px 0;
  padding: 6px 8px;
  border-radius: 6px;
  max-width: 85%;
  word-wrap: break-word;
}

.chatbot_msg_user {
  background-color: #4682b4;
  color: white;
  margin-left: auto;
  text-align: right;
}

.chatbot_msg_bot {
  background-color: #eee;
  color: #000;
}

.chatbot_inputRow {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot_input {
  flex: 1;
  border: none;
  padding: 8px;
  font-size: 9pt;
}

.chatbot_send {
  border: none;
  background-color: #4682b4;
  color: white;
  padding: 0 12px;
  cursor: pointer;
}

@media (max-width: 600px) {
  td {
    font-size: 13px;
  }
  .title {
    font-size: 20px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .chatbot_container {
    right: 10px;
    bottom: 10px;
  }
  .chatbot_panel {
    width: min(85vw, 300px);
    height: min(60vh, 420px);
    bottom: 60px;
  }
  .chatbot_header {
    font-size: 13px;
  }
  .chatbot_messages {
    font-size: 13px;
  }
  .chatbot_input {
    font-size: 16px;
  }
}

/*# sourceMappingURL=neary-homepage.css.map */
