/* DREAMS shell v1 - clean CSS for hoc.dreams.vn */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #172033;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.sc {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  background: #fff;
}

.sc.on {
  display: block;
}

.sc.on.app {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  grid-template-rows: 100%;
  min-height: 0;
}

.ma {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 34px minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.tb {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 34px;
  min-height: 34px;
  margin: 0;
  padding: 0 8px;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff8ee;
}

.tb-t,
.tb-u {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  white-space: nowrap;
}

.tb-u {
  margin-left: auto;
  justify-content: flex-end;
  overflow: visible;
}

.tm-auth-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px;
  border-radius: 10px;
}

.tm-auth-tip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  width: max-content;
  max-width: min(320px, calc(100vw - 24px));
  padding: 7px 10px;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  background: #fff8ee;
  color: #78350f;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.tm-auth-wrap:hover .tm-auth-tip,
.tm-auth-wrap:focus-within .tm-auth-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ca {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 2px 6px 6px;
  box-sizing: border-box;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, .32) transparent;
}

.ca::-webkit-scrollbar,
.dreams-list::-webkit-scrollbar,
.dreams-detail-panel::-webkit-scrollbar,
.dreams-category-grid::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.ca::-webkit-scrollbar-track,
.dreams-list::-webkit-scrollbar-track,
.dreams-detail-panel::-webkit-scrollbar-track,
.dreams-category-grid::-webkit-scrollbar-track {
  background: transparent;
}

.ca::-webkit-scrollbar-thumb,
.dreams-list::-webkit-scrollbar-thumb,
.dreams-detail-panel::-webkit-scrollbar-thumb,
.dreams-category-grid::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, .32);
  border-radius: 999px;
}

.sc.on.app .side {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  width: 200px;
  min-width: 200px;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
  overflow: hidden;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(to bottom, #fff8ee, #a8dcf8);
  transition: width .18s ease, padding .18s ease;
}

.side-brand {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 10px 10px;
  box-sizing: border-box;
}

.side-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.side-brand .nm {
  flex: 1 1 auto;
  min-width: 0;
  color: #0284c7;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .2px;
  text-decoration: none;
}

.side-brand .sl {
  margin: 1px 0 0;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.dreams-side-toggle {
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: -4px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ea580c;
  font: inherit;
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.dreams-side-toggle:hover {
  color: #c2410c;
}

.side-menu {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 0 5px;
  box-sizing: border-box;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, .28) transparent;
}

.side-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.si {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 8px;
  border-radius: 8px;
  box-sizing: border-box;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none;
}

.si:hover,
.si.on {
  color: #0284c7;
  background: rgba(255, 255, 255, .42);
}

.si .ic {
  flex: 0 0 20px;
  width: 20px;
  text-align: center;
  font-size: 17px;
  line-height: 1;
}

.side-div {
  flex: 0 0 auto;
  height: 8px;
  margin: 4px 18px;
}

.side-contact {
  margin-top: auto;
  padding: 7px 8px;
  color: #1e293b;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.6;
}

.side-system {
  padding: 6px 8px;
}

.side-system-link {
  display: block;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.side-system .side-logout-link {
  display: none;
}

.side-td .td-btn {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.dreams-sidebar-collapsed .sc.on.app {
  grid-template-columns: 42px minmax(0, 1fr);
}

.dreams-sidebar-collapsed .sc.on.app .side {
  width: 42px;
  min-width: 42px;
  padding: 8px 0;
}

.dreams-sidebar-collapsed .side-brand {
  padding: 6px;
}

.dreams-sidebar-collapsed .side-brand .nm,
.dreams-sidebar-collapsed .side-brand .sl,
.dreams-sidebar-collapsed .side-menu {
  display: none;
}

.dreams-sidebar-collapsed .dreams-side-toggle {
  margin: 0 auto;
}

.dreams-app {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 3px 6px 6px;
  box-sizing: border-box;
  overflow: hidden;
  color: #102033;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.dreams-app-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
}

.dreams-kicker,
.dreams-safety-note {
  display: none;
}

.dreams-app h1 {
  margin: 0;
  color: #1267bf;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.dreams-app-beyeu h1 {
  color: #159447;
}

.dreams-app p {
  margin: 2px 0 0;
  color: #536176;
  font-size: 11px;
  line-height: 1.3;
}

.dreams-avatar {
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1d73d4;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(29, 115, 212, .18);
}

.dreams-avatar-2d {
  --voice-amp: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .78);
  background: linear-gradient(180deg, #dbeafe, #1d73d4);
}

.dreams-avatar-tieumai {
  background: linear-gradient(180deg, #dcfce7, #16a34a);
}

.dreams-avatar-face {
  position: absolute;
  left: 7px;
  right: 7px;
  top: 9px;
  height: 20px;
  border-radius: 13px 13px 12px 12px;
  background: #ffe4c7;
  box-shadow: inset 0 -2px 0 rgba(120, 53, 15, .08);
}

.dreams-avatar-hair {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 6px;
  height: 11px;
  border-radius: 14px 14px 8px 8px;
  background: #27364a;
}

.dreams-avatar-tieumai .dreams-avatar-hair {
  background: #55311f;
}

.dreams-avatar-eye {
  position: absolute;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #172033;
  animation: dreamsBlink 4.8s infinite;
}

.dreams-avatar-eye.left {
  left: 6px;
}

.dreams-avatar-eye.right {
  right: 6px;
}

.dreams-avatar-mouth {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 10px;
  height: 3px;
  transform: translateX(-50%) scaleY(calc(1 + var(--voice-amp) * 3.5));
  transform-origin: center top;
  border-radius: 0 0 999px 999px;
  background: #a33a32;
  transition: height .08s linear, transform .08s linear;
}

.dreams-avatar-badge {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .45);
  color: #fff;
  font-size: 7px;
  font-weight: 900;
}

.dreams-avatar-2d[data-state="thinking"] {
  animation: dreamsThink 1.05s ease-in-out infinite;
}

.dreams-avatar-2d[data-state="speaking"] {
  animation: dreamsSpeak 1.2s ease-in-out infinite;
}

.dreams-avatar-2d[data-state="speaking"] .dreams-avatar-mouth,
.dreams-avatar-fallback-speak .dreams-avatar-mouth {
  height: calc(4px + var(--voice-amp) * 12px);
}

@keyframes dreamsBlink {
  0%, 94%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(.12); }
}

@keyframes dreamsThink {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes dreamsSpeak {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

.dreams-workspace {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(280px, clamp(320px, 28vw, 390px)) minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.dreams-list-panel,
.dreams-detail-panel {
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d8e5f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.dreams-list-panel {
  display: flex;
  flex-direction: column;
}

.dreams-detail-panel {
  overflow: auto;
  padding: 12px 14px;
  box-sizing: border-box;
}

.dreams-control-panel {
  flex: 0 0 auto;
  padding: 8px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fbff;
}

.dreams-app-beyeu .dreams-control-panel {
  background: #fbfffb;
}

.dreams-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 0 8px;
}

.dreams-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  min-height: 36px;
  padding: 7px 8px;
  border: 1px solid #d6e3f2;
  border-radius: 7px;
  background: #fff;
  color: #c2410c;
  box-shadow: none;
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.dreams-tab.active {
  border-color: #1d73d4;
  background: #1d73d4;
  color: #fbbf24;
}

.dreams-app-beyeu .dreams-tab.active {
  border-color: #16a34a;
  background: #16a34a;
  color: #fbbf24;
}

.dreams-pill-count {
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  color: inherit;
  font-size: 11px;
}

.dreams-tab.active .dreams-pill-count {
  background: rgba(255, 255, 255, .26);
}

.dreams-categories {
  display: none;
}

.dreams-search {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
}

.dreams-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172033;
  font: inherit;
  font-size: 13px;
}

.dreams-list-head {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #526071;
  font-size: 13px;
  font-weight: 750;
}

.dreams-list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow: auto;
  padding: 8px;
}

.dreams-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: start;
  width: 100%;
  margin: 0 0 7px;
  padding: 9px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #f8fbff;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}

.dreams-card:hover,
.dreams-card.active {
  border-color: #1d73d4;
  background: #eef6ff;
}

.dreams-app-beyeu .dreams-card:hover,
.dreams-app-beyeu .dreams-card.active {
  border-color: #16a34a;
  background: #f0fdf4;
}

.dreams-card-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  font-size: 15px;
}

.dreams-card-title {
  display: block;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 13.2px;
  font-weight: 700;
  line-height: 1.35;
  word-break: normal;
}

.dreams-card-meta {
  display: block;
  clear: both;
  margin-top: 2px;
  color: #64748b;
  font-size: 11.5px;
  line-height: 1.35;
}

.dreams-card-arrow {
  color: #1d73d4;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
}

.dreams-empty {
  padding: 44px 12px;
  color: #64748b;
  text-align: center;
}

.dreams-empty-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: #edf6ff;
  color: #1d73d4;
  font-weight: 900;
}

.dreams-category-board {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 14px;
  box-sizing: border-box;
}

.dreams-category-board-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.dreams-category-board-head .dreams-empty-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
}

.dreams-category-board h2 {
  margin: 0;
  color: #1267bf;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.dreams-app-beyeu .dreams-category-board h2 {
  color: #159447;
}

.dreams-category-board p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.dreams-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  overflow: auto;
  padding: 2px 2px 8px;
}

.dreams-category-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 56px;
  padding: 9px;
  border: 1px solid #d8e5f4;
  border-radius: 8px;
  background: #f8fbff;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}

.dreams-category-card:hover,
.dreams-category-card.active {
  border-color: #1d73d4;
  background: #eef6ff;
}

.dreams-app-beyeu .dreams-category-card:hover,
.dreams-app-beyeu .dreams-category-card.active {
  border-color: #16a34a;
  background: #f0fdf4;
}

.dreams-category-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
}

.dreams-category-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.dreams-category-main span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dreams-category-main small {
  color: #64748b;
  font-size: 11.5px;
}

.dreams-detail-title {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.dreams-detail-sub {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
}

.dreams-risk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 11px;
  font-weight: 700;
}

.dreams-risk.critical {
  background: #fee2e2;
  color: #b91c1c;
}

.dreams-risk.medium {
  background: #fef3c7;
  color: #a16207;
}

.dreams-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

.dreams-section h3 {
  margin: 0 0 6px;
  color: #1267bf;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.dreams-app-beyeu .dreams-section h3 {
  color: #159447;
}

.dreams-section p,
.dreams-section li {
  color: #172033;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
}

.dreams-section ul {
  margin: 8px 0;
  padding-left: 18px;
}

.dreams-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dreams-actions button {
  padding: 8px 12px;
  border: 1px solid #d6e3f2;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
}

.dreams-actions button:hover {
  border-color: #1d73d4;
  color: #1d73d4;
}

.dreams-feedback {
  min-height: 20px;
  margin-top: 10px;
  color: #16a34a;
  font-size: 13px;
}

.dreams-loading {
  padding: 20px;
  color: #64748b;
}

.dreams-error {
  padding: 20px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff7f7;
  color: #b91c1c;
}

.dreams-ai-box {
  margin-top: 14px;
  padding: 12px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.dreams-ai-box textarea {
  width: 100%;
  min-height: 76px;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.dreams-ai-box button {
  margin-top: 8px;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  background: #1d73d4;
  color: #fff;
  font-weight: 850;
}

.dreams-app-beyeu .dreams-ai-box button {
  background: #16a34a;
}

.dreams-ai-box button:disabled {
  opacity: .72;
  cursor: wait;
}

.dreams-ai-answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.dreams-ai-answer:empty {
  display: none;
}

.dreams-ai-answer h3 {
  margin: 0 0 8px;
  color: #1267bf;
  font-size: 15px;
}

.dreams-ai-answer p {
  margin: 8px 0;
  color: #172033;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
}

.dreams-back-list {
  display: none;
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #1267bf;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .sc.on.app {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ma {
    grid-template-rows: 38px minmax(0, 1fr);
  }

  .tb {
    height: 38px;
    min-height: 38px;
  }

  .ca {
    padding: 5px;
  }

  .sc.on.app .side {
    width: 42px;
    min-width: 42px;
    padding: 8px 0;
  }

  .sc.on.app .side-brand {
    padding: 6px;
  }

  .sc.on.app .side-brand .nm,
  .sc.on.app .side-brand .sl,
  .sc.on.app .side-menu {
    display: none;
  }

  .sc.on.app .dreams-side-toggle {
    margin: 0 auto;
  }

  .dreams-app {
    padding: 5px;
  }

  .dreams-app h1 {
    font-size: 14px;
  }

  .dreams-workspace {
    display: block;
    min-height: 0;
    overflow: hidden;
  }

  .dreams-list-panel,
  .dreams-detail-panel {
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px);
  }

  .dreams-detail-panel {
    display: none;
    padding: 12px;
  }

  .dreams-detail-open .dreams-list-panel {
    display: none;
  }

  .dreams-detail-open .dreams-detail-panel {
    display: block;
  }

  .dreams-back-list {
    display: inline-flex;
    align-items: center;
  }

  .dreams-tabs {
    grid-template-columns: 1fr;
  }

  .dreams-tab {
    min-height: 36px;
  }

  .dreams-categories {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    margin: 0 0 8px;
    padding-bottom: 2px;
    overflow-x: auto;
  }

  .dreams-cat {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 190px;
    min-height: 32px;
    padding: 6px 9px;
    border: 1.5px solid #f59e0b;
    border-radius: 999px;
    background: #fff8ee;
    color: #c2410c;
    font-size: 12.5px;
    font-weight: 700;
  }

  .dreams-cat.active {
    background: #f59e0b;
    color: #fff;
  }

  .dreams-detail-title {
    font-size: 15.5px;
  }

  .dreams-section p,
  .dreams-section li,
  .dreams-ai-answer p {
    font-size: 15px;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .dreams-detail-panel,
  .dreams-detail-panel * {
    visibility: visible;
  }

  .dreams-detail-panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
  }

  .dreams-actions,
  .dreams-ai-box {
    display: none;
  }
}
