.dsrpt-chat, .dsrpt-dashboard {
  border: 2px solid #111;
  border-radius: 12px;
  padding: 12px;
  max-width: 650px;
  background: #fafafa;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  margin: 1rem auto;
}

.dsrpt-messages {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.dsrpt-messages .user {
  text-align: right;
  margin: 6px 0;
  color: #0073aa;
}

.dsrpt-messages .ai {
  text-align: left;
  margin: 6px 0;
  color: #222;
}

.dsrpt-input {
  width: 70%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.dsrpt-send {
  width: 25%;
  padding: 8px;
  margin-left: 5%;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.dsrpt-send:hover {
  background: #005f8d;
}

.dsrpt-tabs {
  display: flex;
  margin-bottom: 8px;
}
.dsrpt-tabs .tab {
  flex: 1;
  padding: 8px;
  border: none;
  cursor: pointer;
  background: #eee;
  border-radius: 6px;
  margin-right: 4px;
}
.dsrpt-tabs .tab.active {
  background: #0073aa;
  color: #fff;
}
