body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e5e5e5;
  }

  .chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }

  .chat-header {
    padding: 15px;
    background-color: #0ecf6c;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }

  .SelectLabel{
    background-color: #0ecf6c;
    text-align: center;
    color: white;
  }

  .chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .message {
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 70%;
  }

  .password {
    width: 200px;
    height: 40px;
    margin-top: 50%;
    align-self: center;
    border-radius: 15px;
    border-width: 2px;
    display: block;
  }

  .error {
    color: red;
    margin-top: 8px;
    align-self: center;
    display: none;
  }

  .submitButton{
    width: 80px;
    height: 30px;
    align-self: center;
    border-radius: 15px;
    border-width: 0px;
    background-color: #0ecf6c;
    margin-top: 5px;
  }

  .message.user {
    background-color: #007aff;
    color: white;
    align-self: flex-end;
  }

  .message.other {
    background-color: #f1f1f1;
    color: black;
    align-self: flex-start;
  }

  .message.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-self: flex-start;
  }

  .chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
  }

  .chat-input input {
    display: none;
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
  }

  .chat-input button {
    display: none;
    margin-left: 10px;
    padding: 8px 16px;
    background-color: #007aff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  @media (max-width: 600px) {
    .chat-container {
      border-left: none;
      border-right: none;
    }
  }