/* =============================================================================
   DM Browser Panels (NPC, Quest, Lore Dashboard)
   =============================================================================
   Extracted from inline styles in:
   - _dm_npc_browser.html.erb
   - _dm_quest_browser.html.erb
   - _dm_lore_dashboard.html.erb

   Uses CSS variables from _tokens.css for consistency.
*/

/* -----------------------------------------------------------------------------
   Shared Panel Base Styles
   -------------------------------------------------------------------------- */
.panel-dm-npc-browser,
.panel-dm-quest-browser,
.panel-dm-lore-dashboard {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-dark);
  color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   NPC Browser Specific Styles
   -------------------------------------------------------------------------- */
.npc-browser-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.npc-detail-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.npc-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.npc-detail-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.npc-detail-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.npc-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.npc-detail-section {
  margin-bottom: 16px;
}

.npc-detail-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
}

.npc-detail-section-content {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   Quest Browser Specific Styles
   -------------------------------------------------------------------------- */
.quest-browser-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.quest-detail-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quest-detail-header {
  margin-bottom: 16px;
}

.quest-detail-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.quest-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.quest-detail-description {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.quest-detail-section {
  margin-bottom: 16px;
}

.quest-detail-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
}

.quest-detail-section-content {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Objectives list */
.objectives-list {
  margin: 0;
  padding-left: 20px;
}

.objectives-list li {
  margin-bottom: 6px;
  position: relative;
}

.objectives-list li::marker {
  color: var(--color-gold);
}

/* Rewards */
.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--surface-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.reward-item .reward-type {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 2px 6px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 3px;
}

.reward-item .reward-name {
  flex: 1;
  font-size: 13px;
}

/* Encounters */
.encounter-card {
  padding: 10px 12px;
  background: var(--surface-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 8px;
}

.encounter-name {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.encounter-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Quest type tag */
.quest-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 10px;
  background: var(--surface-hover);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Party level badge */
.party-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 3px;
  color: var(--color-gold);
}

.party-level-badge svg {
  width: 12px;
  height: 12px;
}

/* Destination info */
.destination-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.destination-info svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.destination-name {
  font-weight: 600;
  font-size: 13px;
}

.destination-location {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

/* -----------------------------------------------------------------------------
   Shared Browser Components
   -------------------------------------------------------------------------- */

/* Detail content area (used by NPC and Quest browsers) */
.detail-content-area {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

/* DM Secrets section (used by NPC and Quest browsers) */
.dm-secrets-section {
  margin-top: 20px;
  padding: 12px;
  background: rgba(198, 120, 221, 0.1);
  border: 1px solid rgba(198, 120, 221, 0.3);
  border-radius: 4px;
}

.dm-secrets-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 8px;
}

.dm-secrets-content {
  font-size: 13px;
  color: #c4b5fd;
  line-height: 1.5;
}

/* -----------------------------------------------------------------------------
   Lore Dashboard Specific Styles
   -------------------------------------------------------------------------- */
.panel-dm-lore-dashboard .dm-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  background: linear-gradient(180deg,
    rgba(255, 215, 0, 0.08) 0%,
    rgba(255, 215, 0, 0.02) 50%,
    var(--bg-secondary) 100%);
  position: relative;
}

/* Gold accent line at bottom */
.panel-dm-lore-dashboard .dm-panel-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 215, 0, 0.4) 20%,
    rgba(255, 215, 0, 0.4) 80%,
    transparent 100%);
}

.panel-dm-lore-dashboard .panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.panel-dm-lore-dashboard .panel-icon {
  color: #ffd700;
}

.panel-dm-lore-dashboard .world-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #ffd700 0%, #e5c100 100%);
  color: #1a1a1a;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.panel-dm-lore-dashboard .dm-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Stats Grid */
.lore-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lore-stat {
  flex: 1;
  min-width: 80px;
  padding: 0.75rem;
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.06) 0%,
    rgba(255, 215, 0, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.lore-stat:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3),
              0 0 15px rgba(255, 215, 0, 0.1);
}

.lore-stat--loading .stat-value {
  opacity: 0.5;
  animation: lore-pulse 1.5s infinite;
}

@keyframes lore-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.3; }
}

.lore-stat .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.lore-stat .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Sections */
.lore-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-heading {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

/* Gold accent underline for section headings */
.section-heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
    #ffd700 0%,
    rgba(255, 215, 0, 0.3) 100%);
}

/* Portal Cards */
.lore-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.lore-portal-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.06) 0%,
    rgba(255, 215, 0, 0.01) 100%);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 4px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Subtle corner accent */
.lore-portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg,
    transparent 50%,
    rgba(255, 215, 0, 0.1) 50%);
  transition: all 0.2s ease;
}

.lore-portal-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.12) 0%,
    rgba(255, 215, 0, 0.03) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(255, 215, 0, 0.1);
}

.lore-portal-card:hover::before {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
    transparent 50%,
    rgba(255, 215, 0, 0.2) 50%);
}

.lore-portal-card .portal-icon {
  font-family: monospace;
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.lore-portal-card .portal-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.lore-portal-card:hover .portal-title {
  color: #ffd700;
}

.lore-portal-card .portal-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Search */
.lore-search {
  display: flex;
  gap: 0.5rem;
}

.lore-search-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.875rem;
}

.lore-search-input:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.lore-search-btn {
  padding: 0.5rem 0.75rem;
  background: var(--accent-purple);
  border: none;
  color: var(--bg-primary);
  cursor: pointer;
  transition: opacity 0.2s;
}

.lore-search-btn:hover {
  opacity: 0.9;
}

.lore-search-results {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.lore-search-results.has-results {
  display: flex;
}

.lore-search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.2s;
}

.lore-search-result:hover {
  border-color: var(--accent-purple);
}

.lore-search-result .result-type {
  font-size: 0.75rem;
  color: var(--accent-purple);
  text-transform: uppercase;
  min-width: 50px;
}

.lore-search-result .result-name {
  flex: 1;
}

/* DM Hint */
.lore-dm-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(198, 120, 221, 0.1);
  border: 1px solid var(--accent-purple);
  border-radius: 2px;
  font-size: 0.75rem;
  color: var(--accent-purple);
}

.lore-dm-hint .hint-icon {
  flex-shrink: 0;
}

/* Footer */
.panel-dm-lore-dashboard .dm-panel-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
  background: var(--surface-darker);
}

.panel-dm-lore-dashboard .exit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.panel-dm-lore-dashboard .exit-btn:hover {
  background: var(--surface-hover);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.panel-dm-lore-dashboard .exit-btn .btn-icon {
  width: 16px;
  height: 16px;
}

/* -----------------------------------------------------------------------------
   DM Location Browser - District Sections
   -------------------------------------------------------------------------- */
.panel-dm-location-browser {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-dark);
  color: var(--text-primary);
}

.location-browser-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.district-section {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--surface-darker);
  overflow: hidden;
}

.district-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.district-header:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.district-icon {
  font-family: monospace;
  font-size: 12px;
  color: var(--color-gold, #ffd700);
  min-width: 24px;
}

.district-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  flex: 1;
}

.district-count {
  font-size: 11px;
  color: var(--text-muted);
  padding: 2px 8px;
  background: var(--surface-hover);
  border-radius: 10px;
}

.district-locations {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.district-locations.collapsed {
  display: none;
}

.location-card {
  padding: 10px 12px;
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.location-card:hover {
  border-color: var(--color-gold, #ffd700);
  background: rgba(255, 215, 0, 0.05);
}

.location-card-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.location-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Location Detail View */
.location-detail-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.detail-district {
  font-size: 12px;
  color: var(--color-gold, #ffd700);
  margin-bottom: 12px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-primary);
}

.npc-link {
  display: inline-block;
  padding: 4px 10px;
  margin: 2px 4px 2px 0;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 3px;
  color: var(--accent-purple, #a855f7);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.npc-link:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: rgba(147, 51, 234, 0.5);
}

/* -----------------------------------------------------------------------------
   DM NPC Browser - Card Enhancements
   -------------------------------------------------------------------------- */
.npc-browser-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.npc-card {
  padding: 12px;
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.npc-card:hover {
  border-color: var(--accent-purple, #a855f7);
  background: rgba(147, 51, 234, 0.05);
}

.npc-card.npc-has-secrets {
  border-left: 3px solid var(--accent-purple, #a855f7);
}

.npc-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.npc-card-icon {
  font-family: monospace;
  font-size: 11px;
  color: var(--accent-purple, #a855f7);
  background: rgba(147, 51, 234, 0.15);
  padding: 2px 6px;
  border-radius: 3px;
}

.npc-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.npc-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.npc-meta-item {
  font-size: 11px;
  color: var(--text-muted);
  padding: 2px 6px;
  background: var(--surface-hover);
  border-radius: 3px;
}

.npc-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* NPC Detail View */
.npc-detail-view .detail-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.npc-detail-view .detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

.npc-detail-view .detail-meta span {
  color: var(--text-secondary);
}

.npc-detail-view .detail-meta strong {
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   DM Quest Browser - Card Enhancements
   -------------------------------------------------------------------------- */
.quest-browser-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.quest-card {
  padding: 12px;
  background: var(--surface-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quest-card:hover {
  border-color: var(--color-gold, #ffd700);
  background: rgba(255, 215, 0, 0.05);
}

.quest-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.quest-card-icon {
  font-family: monospace;
  font-size: 11px;
  color: var(--color-gold, #ffd700);
  background: rgba(255, 215, 0, 0.15);
  padding: 2px 6px;
  border-radius: 3px;
}

.quest-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.quest-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.quest-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Difficulty badges */
.difficulty-badge {
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.difficulty-badge.easy {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.difficulty-badge.medium {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fcd34d;
}

.difficulty-badge.hard {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fdba74;
}

.difficulty-badge.deadly,
.difficulty-badge.unknown {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* Quest Detail View */
.quest-detail-view .detail-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.quest-detail-view .detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Shared Detail Styling */
.detail-section {
  margin-bottom: 16px;
}

.detail-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
}

.detail-section-content {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* DM Notes Section */
.dm-notes {
  margin-top: 20px;
  padding: 12px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 4px;
}

.dm-notes-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-purple, #a855f7);
  margin-bottom: 8px;
}

.dm-notes-content {
  font-size: 13px;
  color: #c4b5fd;
  line-height: 1.5;
  white-space: pre-wrap;
}
