#cdturns-chat-root {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: #1a1714;
}
.cdturns-launcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99990;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #8f3d2a;
  color: #fffdf8;
  font: 600 14px/1 "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 23, 20, 0.18);
}
.cdturns-launcher[hidden] { display: none; }
.cdturns-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99991;
  width: min(380px, calc(100vw - 24px));
  height: min(520px, calc(100dvh - 24px));
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border: 1px solid rgba(26, 23, 20, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.18);
  overflow: hidden;
}
.cdturns-panel[hidden] { display: none; }
.cdturns-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 8px 10px 14px;
  background: #1a1714;
  color: #fffdf8;
}
.cdturns-head-text { min-width: 0; padding-top: 6px; }
.cdturns-head strong { display: block; font-size: 15px; }
.cdturns-head span { display: block; font-size: 12px; opacity: 0.75; margin-top: 2px; }
.cdturns-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fffdf8;
  cursor: pointer;
}
.cdturns-close:hover,
.cdturns-close:focus-visible {
  background: rgba(255, 253, 248, 0.12);
  outline: none;
}
.cdturns-msgs {
  flex: 1;
  overflow: auto;
  padding: 12px;
  background: #f4efe6;
}
.cdturns-msg {
  max-width: 88%;
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.45;
  background: #fff;
}
.cdturns-msg.is-visitor {
  margin-left: auto;
  background: #efe8db;
}
.cdturns-msg.is-owner { background: #dce8d4; }
.cdturns-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.cdturns-choices button {
  border: 1px solid rgba(26, 23, 20, 0.14);
  background: #fff;
  border-radius: 999px;
  height: 36px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
}
.cdturns-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(26, 23, 20, 0.14);
  background: #fffdf8;
}
.cdturns-form input[type="text"] {
  flex: 1;
  height: 40px;
  border: 1px solid rgba(26, 23, 20, 0.14);
  border-radius: 8px;
  padding: 0 10px;
  font-size: 16px;
}
.cdturns-form button {
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #8f3d2a;
  color: #fffdf8;
  font-weight: 600;
  cursor: pointer;
}
.cdturns-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cdturns-closed {
  padding: 16px;
  font-size: 14px;
  color: #6e675e;
}
body.admin-bar .cdturns-launcher { bottom: 48px; }
body.admin-bar .cdturns-panel { bottom: 48px; }
