#rsdc-aria-launcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  padding: 10px 16px;
  border-radius: 999px;
  background: #01696f;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.rsdc-aria-chat {
  position: fixed;
  right: 16px;
  bottom: 70px;
  width: 320px;
  max-height: 70vh;
  background: #f9f8f5;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

.rsdc-aria-chat--hidden {
  display: none;
}

.rsdc-aria-chat__header {
  padding: 8px 12px;
  background: #01696f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rsdc-aria-chat__title {
  display: flex;
  flex-direction: column;
}

.rsdc-aria-chat__name {
  font-weight: 600;
}

.rsdc-aria-chat__subtitle {
  font-size: 11px;
  opacity: 0.9;
}

.rsdc-aria-chat__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.rsdc-aria-chat__messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #fbfbf9;
}

.rsdc-aria-message {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.rsdc-aria-message--user {
  text-align: right;
}

.rsdc-aria-message--bot,
.rsdc-aria-message--staff,
.rsdc-aria-message--system {
  text-align: left;
}

.rsdc-aria-message--system {
  font-size: 11px;
  color: #7a7974;
}

.rsdc-aria-chat__input-row {
  display: flex;
  padding: 8px;
  border-top: 1px solid #dcd9d5;
  background: #f7f6f2;
}

.rsdc-aria-chat__input {
  flex: 1;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #d4d1ca;
}

.rsdc-aria-chat__send {
  margin-left: 6px;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  border: none;
  background: #01696f;
  color: #fff;
  cursor: pointer;
}
