/* Base styles (light mode by default) */
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #000;
}

.chat {
  padding-top: 40px;
}

#root {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
  height: 100%;
}

.message {
  margin-bottom: 10px;
}

.message .user {
  font-weight: bold;
  text-align: right;
}

.message .remove {
  position: absolute;
  width: 22px;
  height: 20px;
  left: -60px;
  display: none;
  padding: 0;
  line-height: 18px;
  border: none;
}

.send-message {
  padding: 0;
}

.my-input-text::placeholder {
  color: #ccc;
}

.gap {
  height: 6px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  color: #000;
}

/* Dark mode styles
@media (prefers-color-scheme: dark) {
  body,
  html {
    background: #121212;
    color: #e0e0e0;
  }

  .modal {
    background: #1e1e1e;
    color: #fff;
  }

  .my-input-text::placeholder {
    color: #e0e0e0;
  }

  .modal {
    color: white;
  }

  .chat {
    background: #121212;
  }

  .message .user {
    color: white;
  }

  .send-message {
    background: #333;
    color: black;
  }
}
*/
