
.message-container {
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 20px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.user-message, .assistant-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 2;
  max-width: 100%;
}

.user-message span, .assistant-message span {
  flex: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: calc(100% - 35px);
}

.user-message {
  color: yellow;
  margin-top: 5px;
}

.assistant-message {
  color: white;
}

.user-message i, .assistant-message i {
  font-size: 16px;
  min-width: 25px;
  margin-right: 10px;
  margin-top: 5px;  /* Align icon with the first line of text */
}

.user-message i {
  color: yellow;
}

.assistant-message i {
  color: white;
}

.timestamp {
  position: absolute;
  top: 20px;  /* Moved down slightly */
  left: 10px;
  color: lime;
  font-size: 0.8em;
  z-index: 99999;
  display: flex;
  align-items: center;
}

.timestamp i {
  color: lime;
  margin-right: 5px;
}

.message-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.copy-button, .delete-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
  color: #2196F3;
}

.copy-button:hover, .delete-button:hover {
  color: #64B5F6;
}
