/* Chat Modal Styles */
.chat-messages {
  height: 400px;
  overflow-y: auto;
  padding: 15px;
  background: #f8f9fa;
}

.message {
  margin-bottom: 15px;
  max-width: 70%;
}

.message.sent {
  margin-left: auto;
}

.message.received {
  margin-right: auto;
}

.message-content {
  padding: 10px 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.sent .message-content {
  background: #007bff;
  color: white;
}

.chat-input {
  padding: 15px;
  background: white;
  border-top: 1px solid #dee2e6;
}

.chat-input form {
  display: flex;
  gap: 10px;
}
