*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a1a;
  background: #f5f5f5;
}

.study-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  background: #fff;
  min-height: 100vh;
}

.testing-banner {
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5c4a00;
  background: #fff3cd;
  border: 1px solid #e6d9a8;
  border-radius: 4px;
}

.study-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.study-header__logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}

.study-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.study-section {
  margin-bottom: 1.25rem;
}

.study-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.consent-meta {
  margin: 0 0 0.75rem;
}

.consent-text {
  max-height: 28rem;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fafafa;
  font-size: 0.9375rem;
}

.consent-text ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
}

.consent-text li {
  margin-bottom: 0.5rem;
}

.consent-text a {
  color: #0066cc;
}

.consent-version {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: #555;
}

.consent-error {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  color: #7a0000;
  background: #fde8e8;
  border: 1px solid #e8b4b4;
  border-radius: 4px;
}

.consent-agreement-intro {
  margin: 0 0 1rem;
}

.exit-redirect-note {
  font-size: 0.9375rem;
  color: #555;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

.consent-checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.consent-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.study-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.study-submit button {
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.study-submit__primary {
  color: #fff;
  background: #990000;
}

.study-submit__primary:hover:not(:disabled) {
  background: #7a0000;
}

.study-submit__primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.consent-continue-wrapper {
  display: inline-block;
  position: relative;
}

.consent-continue-wrapper.is-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  cursor: not-allowed;
  z-index: 1;
}

.study-submit__secondary {
  color: #1a1a1a;
  background: #e8e8e8;
  border: 1px solid #ccc;
}

.study-submit__secondary:hover {
  background: #ddd;
}

.study-top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.exit-study-form {
  margin: 0;
}

.exit-study-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  cursor: pointer;
}

.exit-study-btn:hover {
  background: #f0f0f0;
}

.exit-confirm-message {
  margin: 0 0 1.5rem;
}

.exit-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.exit-confirm-form {
  margin: 0;
}

.exit-confirm-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.exit-confirm-btn--primary {
  color: #fff;
  background: #1a5fb4;
  border-color: #1a5fb4;
}

.exit-confirm-btn--primary:hover {
  background: #15539e;
}

.exit-confirm-btn--secondary {
  color: #1a1a1a;
  background: #fff;
  border-color: #999;
}

.exit-confirm-btn--secondary:hover {
  background: #f0f0f0;
}

.demographics-form {
  margin-top: 0.5rem;
}

.demographic-question {
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
}

.demographic-question legend {
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0;
}

.demographic-question.is-invalid {
  padding: 0.75rem;
  border: 2px solid #c62828;
  border-radius: 4px;
  background: #fff5f5;
}

.form-error-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  color: #7a0000;
  background: #fde8e8;
  border: 1px solid #e8b4b4;
  border-radius: 4px;
}

.choice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.choice-list li {
  margin-bottom: 0.4rem;
}

.choice-list label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.demographic-text-input {
  display: block;
  width: 100%;
  max-width: 16rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.demographic-text-input:disabled {
  background: #eee;
  color: #777;
}

.prefer-not-say {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

.conditional-field {
  margin-top: 0.75rem;
}

.conditional-field[hidden] {
  display: none;
}

.pre-survey-instructions {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
}

.pre-survey-progress {
  margin: 0 0 1.25rem;
  color: #555;
  font-size: 0.9375rem;
}

.pre-survey-questions {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pre-survey-questions > li {
  margin-bottom: 1.75rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
}

.pre-survey-question__number {
  font-weight: 600;
}

.pre-survey-question.is-highlighted {
  border-color: #c62828;
  background: #fff5f5;
  box-shadow: 0 0 0 1px #e8b4b4;
}

.pre-survey-question__text {
  margin: 0 0 0.75rem;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-label {
  font-size: 0.8125rem;
  color: #555;
  min-width: 1.5rem;
  text-align: center;
}

.pre-survey-slider {
  flex: 1;
  height: 0.5rem;
  accent-color: #990000;
  cursor: pointer;
}

.slider-value {
  min-width: 2rem;
  font-weight: 600;
  text-align: right;
}

.pre-survey-nav {
  justify-content: flex-end;
}

.post-survey-likert-page {
  max-width: 64rem;
}

.post-survey-likert-form {
  margin-top: 0.25rem;
}

.likert-matrix {
  margin-bottom: 1.75rem;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: #fafbfd;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(18, 32, 56, 0.04);
}

.likert-matrix__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.likert-grid {
  --likert-statement-min: 15rem;
  --likert-col: minmax(5.25rem, 1fr);
  display: grid;
  grid-template-columns: minmax(var(--likert-statement-min), 1.25fr) repeat(
      var(--likert-cols),
      var(--likert-col)
    );
  min-width: 52rem;
}

.likert-grid__header {
  display: contents;
}

.likert-grid__corner--label {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 0.85rem 0.65rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7c96;
  background: #f0f3f8;
  border-bottom: 1px solid #e2e6ec;
}

.likert-grid__col-label {
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.55rem 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: #4a5d78;
  background: #f0f3f8;
  border-bottom: 1px solid #e2e6ec;
  hyphens: auto;
}

.likert-grid__row {
  display: contents;
}

.likert-grid__row > .likert-grid__statement {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.85rem 0.85rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #1f2a3d;
  background: #fff;
  border-bottom: 1px solid #eef1f5;
}

.likert-grid__row--alt > .likert-grid__statement,
.likert-grid__row--alt > .likert-grid__cell {
  background: #f8fafc;
}

.likert-grid__statement-num {
  flex: 0 0 auto;
  font-weight: 700;
  color: #990000;
}

.likert-grid__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.25rem;
  background: #fff;
  border-bottom: 1px solid #eef1f5;
}

.likert-grid__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  cursor: pointer;
}

.likert-grid__option input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.likert-grid__dot {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #b8c2d1;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.likert-grid__option:hover .likert-grid__dot {
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}

.likert-grid__option input:focus-visible + .likert-grid__dot {
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.18);
}

.likert-grid__option input:checked + .likert-grid__dot {
  border-color: #990000;
  background: radial-gradient(circle at center, #990000 0 38%, #fff 40%);
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
}

.likert-grid__row:hover > .likert-grid__statement,
.likert-grid__row:hover > .likert-grid__cell {
  background: #f3f7fc;
}

.likert-grid__row:last-child > .likert-grid__statement,
.likert-grid__row:last-child > .likert-grid__cell {
  border-bottom: 0;
}

.post-survey-open-text {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background: #fafbfd;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.post-survey-open-text__label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #1f2a3d;
}

.post-survey-open-text__hint {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: #6b7c96;
}

.post-survey-open-text__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  line-height: 1.45;
  color: #1f2a3d;
  background: #fff;
  border: 1px solid #ccd4df;
  border-radius: 6px;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.post-survey-open-text__input:focus {
  outline: none;
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.12);
}

.debrief {
  max-width: 42rem;
}

.debrief__header {
  margin-bottom: 1.5rem;
}

.debrief__meta {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  color: #333;
}

.debrief__intro {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 500;
}

.debrief__section {
  margin-bottom: 1.35rem;
}

.debrief__heading {
  margin: 0 0 0.55rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.debrief__section p {
  margin: 0 0 0.75rem;
}

.debrief__section p:last-child {
  margin-bottom: 0;
}

.debrief__contacts {
  margin: 0 0 0.75rem 1.1rem;
  padding: 0;
}

.debrief__contacts li {
  margin-bottom: 0.35rem;
}

.debrief-condition-box {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid #c5d4ea;
  background: #eef4fc;
}

.debrief-condition-box--no-context {
  border-color: #d4c5ea;
  background: #f3eefc;
}

.debrief-condition-box--intro-chat {
  border-color: #b8dcc8;
  background: #edf8f1;
}

.debrief-condition-box__title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: #2c3f5c;
}

.debrief-condition-box__body {
  margin: 0;
  color: #1f2a3d;
}

.debrief__section--withdraw {
  padding-top: 0.35rem;
  border-top: 1px solid #e4e4e4;
}

.debrief-withdraw {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  cursor: pointer;
}

.debrief-withdraw input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
  accent-color: #990000;
}

.debrief-complete {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: #fafbfd;
  text-align: center;
}

.debrief-complete__code {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: #333;
}

.debrief-complete__btn {
  min-width: 12rem;
}

@media (max-width: 52rem) {
  .likert-grid {
    --likert-statement-min: 12rem;
    --likert-col: minmax(4.5rem, 1fr);
    min-width: 44rem;
  }

  .likert-grid__col-label {
    font-size: 0.625rem;
  }

  .likert-grid__statement {
    font-size: 0.875rem;
  }
}

/* Conversation chat */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.monospace {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

.conversation-layout {
  position: relative;
}

.chat-overlay {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(30, 30, 30, 0.45);
  z-index: 80;
}

/* `hidden` must win: our flex display would otherwise override the UA [hidden] rule */
.chat-overlay[hidden],
.chat-overlay[hidden=""] {
  display: none !important;
}

.chat-overlay:not([hidden]) {
  display: flex;
}

.chat-popup-system-prompt {
  margin: -0.35rem 0 1.1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #2c4a72;
  background: #eaf2fc;
  border: 1px dashed #89a8cf;
  border-radius: 4px;
}

.chat-popup-system-prompt__label {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d5d8a;
}

.chat-popup-system-prompt__body {
  margin: 0;
  max-height: 14rem;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-popup-system-prompt--error .chat-popup-system-prompt__error {
  margin: 0;
  font-size: 0.75rem;
  color: #8b2e2e;
}

.chat-overlay__panel {
  max-width: 28rem;
  width: 100%;
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.chat-overlay__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.chat-overlay__body {
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #333;
}

.chat-overlay__statement {
  font-style: italic;
}

.chat-overlay__placeholder {
  margin: 0;
  font-style: italic;
  color: #666;
}

/* Buttons on chat modal + composer (.study-submit is for grouped consent actions, not these) */
.chat-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  border: none;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.015em;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease,
    opacity 0.18s ease;
}

/* Matches .study-submit__primary: #990000 / hover #7a0000 */
.chat-btn:focus-visible {
  outline: 2px solid #990000;
  outline-offset: 2px;
}

.chat-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #aa0e0e 0%, #990000 45%, #8a0404 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(74, 0, 0, 0.25),
    0 4px 12px rgba(74, 0, 0, 0.12);
}

.chat-btn--primary:hover:not(:disabled) {
  background: linear-gradient(180deg, #b01010 0%, #7a0000 55%, #6f0000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 2px 4px rgba(74, 0, 0, 0.22),
    0 6px 16px rgba(74, 0, 0, 0.12);
}

.chat-btn--primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(74, 0, 0, 0.2);
}

.chat-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.chat-btn--primary:disabled {
  background: #ccc;
  opacity: 1;
}

.chat-btn--start {
  width: 100%;
  padding: 0.8125rem 1.35rem;
  font-size: 1.0625rem;
  border-radius: 12px;
}

.chat-btn--send {
  padding: 0.5rem 1.375rem;
  min-width: 6.75rem;
  font-size: 0.9375rem;
  border-radius: 9999px;
}

.chat-main {
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  min-height: 22rem;
  max-height: calc(100vh - 12rem);
}

.chat-main[hidden],
.chat-main[hidden=""] {
  display: none !important;
}

.chat-main:not([hidden]) {
  display: flex;
}

.chat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.chat-toolbar__title {
  margin: 0;
  font-size: 1.2rem;
  flex: 1 1 40%;
}

.chat-timer-widget {
  flex: 0 1 auto;
  text-align: right;
}

.chat-timer-wait-msg {
  margin: 0;
  font-size: 0.875rem;
  color: #555;
  max-width: 14rem;
  margin-left: auto;
}

.chat-timer-running {
  margin: 0;
  padding: 0.35rem 0.65rem;
  background: #f4f8ff;
  border: 1px solid #cce0fc;
  border-radius: 4px;
}

.chat-timer-running[hidden],
.chat-timer-running[hidden=""] {
  display: none !important;
}

.chat-timer-running:not([hidden]) {
  display: block;
}

.chat-timer-running__caption {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a4470;
}

.chat-timer-running__digits {
  font-size: 1rem;
  font-weight: 700;
}

.chat-expired-banner[hidden] {
  display: none !important;
}

.chat-expired-banner {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #fff3cd;
  border-bottom: 1px solid #e6d9a8;
  color: #5c4a00;
  font-size: 0.9375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.chat-expired-banner__message {
  margin: 0;
  flex: 1 1 12rem;
}

.chat-proceed-btn[hidden] {
  display: none !important;
}

.chat-proceed-btn {
  flex: 0 0 auto;
  margin: 0;
}

.chat-messages {
  flex: 1 1 auto;
  min-height: 12rem;
  overflow-y: auto;
  padding: 1rem;
  scroll-behavior: smooth;
}

.chat-row {
  display: flex;
  margin-bottom: 0.65rem;
}

.chat-row--user {
  justify-content: flex-end;
}

.chat-row--assistant {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: min(92%, 34rem);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9625rem;
  line-height: 1.5;
}

.chat-bubble__text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-bubble--user {
  background: #dfeaf8;
  border: 1px solid #b8cae8;
}

.chat-bubble--assistant {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.chat-row--send-error {
  justify-content: flex-start;
}

.chat-bubble--send-error {
  background: #fff4f4;
  border: 1px solid #e8b4b4;
  color: #7a2e2e;
}

.chat-composer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid #e6e6e6;
}

.chat-input {
  width: 100%;
  resize: vertical;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  font: inherit;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
}

.chat-input:focus {
  outline: 2px solid #1a5fb4;
  outline-offset: 1px;
}

.chat-input:disabled {
  background: #f0f0f0;
  color: #666;
}

.chat-composer__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 32rem) {
  .chat-toolbar {
    flex-direction: column;
  }

  .chat-timer-widget {
    width: 100%;
    text-align: left;
  }

  .chat-timer-wait-msg {
    margin-left: 0;
    max-width: none;
  }
}
