body {
    font-family: 'Lato', sans-serif;
    background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .chat-container {
    background-color: #ffffff;
    width: 400px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .chat-header {
    background-color: #007bff;
    color: #ffffff;
    padding: 1rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  .chat-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
  }
  
  .chat-input {
    display: flex;
    padding: 1rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  .chat-input input {
    flex-grow: 1;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    outline: none;
  }
  
  .chat-input button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
  }

  /* Add this style to the existing CSS file */

.chat-messages p {
    background-color: #e9e9e9;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
  }

  #loader {
    font-size: 25px;
    text-align: center;
  }

  .kakao-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 350px;
    min-height: 100px;
    background-color: #007bff;
  }
