
#ai-resume-bot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#ai-chat-window {
  flex: 1 1 45%;
  height: 400px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
}
#ai-resume-form {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
#ai-resume-form input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}
#ai-resume-form button {
  padding: 10px 20px;
}
.message {
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 90%;
}
.message.bot {
  background: #e3fced;
  color: #0a4e0a;
}
.message.user {
  background: #d0e7ff;
  color: #0b3c7b;
  align-self: flex-end;
}
#ai-resume-preview {
  flex: 1 1 45%;
  padding: 20px;
  background: #f4fff4;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  border-radius: 10px;
}
