/* Marketing-Kampagnen-System - Modern Light Design 2026 */

:root {
  /* Helle Farbpalette */
  --primary: #0ea5e9;
  --primary-light: #38bdf8;
  --primary-dark: #0284c7;
  --primary-glow: rgba(14, 165, 233, 0.25);

  --secondary: #3b82f6;
  --accent: #06b6d4;

  /* Neutrale Farben */
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-input: #ffffff;
  --bg-sidebar: #f1f5f9;

  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Text - Dunkelblau */
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  /* Status-Farben */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.1);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.1);

  /* Schatten & Effekte */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 8px 30px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px var(--primary-glow);

  /* Radien */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-body);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  color: var(--primary);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary) !important;
  background: var(--bg-card-hover);
}

/* ===== SIDEBAR ===== */
.sidebar {
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  min-height: calc(100vh - 60px);
  padding: 1.5rem 0.75rem;
}

.sidebar .nav-link {
  color: var(--text-secondary) !important;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.sidebar .nav-link:hover {
  color: var(--primary) !important;
  background: var(--bg-white);
  border-color: var(--border);
  transform: translateX(4px);
}

.sidebar .nav-link.active {
  color: var(--bg-white) !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.sidebar .nav-link i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.sidebar small.text-muted {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding: 0.5rem 1rem;
  display: block;
  margin-top: 1rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  border-bottom: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-header.bg-secondary {
  background: linear-gradient(135deg, var(--text-muted) 0%, #475569 100%) !important;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--primary-glow);
  color: white;
}

.btn-secondary {
  background: var(--bg-card-hover);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-outline-danger {
  background: transparent;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}

.btn-outline-danger:hover {
  background: var(--danger);
  color: white;
}

.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-link {
  background: none;
  color: var(--text-secondary);
  padding: 0.25rem;
}

.btn-link:hover {
  color: var(--primary);
}

.btn-light {
  background: var(--bg-white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-light:hover {
  background: var(--bg-card-hover);
}

.btn-group {
  display: inline-flex;
  gap: 0.25rem;
}

.btn-group .btn {
  border-radius: var(--radius-sm);
}

/* ===== TABLES ===== */
.table {
  color: var(--text);
  margin: 0;
}

.table thead th {
  background: var(--bg-body);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.table tbody tr {
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--border);
}

.table tbody tr:hover {
  background: var(--primary-glow);
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  border: none;
}

.table-responsive {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===== FORMS ===== */
.form-control, .form-select {
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  background: var(--bg-input);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  color: var(--text);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-text {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-check-input {
  background-color: var(--bg-input);
  border-color: var(--border);
  width: 1.15em;
  height: 1.15em;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  color: var(--text-secondary);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 12px;
  padding-right: 2.25rem;
}

.input-group-text {
  background: var(--bg-body);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* ===== BADGES ===== */
.badge {
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.badge.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: white !important;
}

.badge.bg-success {
  background: var(--success-bg) !important;
  color: var(--success) !important;
}

.badge.bg-danger {
  background: var(--danger-bg) !important;
  color: var(--danger) !important;
}

.badge.bg-warning {
  background: var(--warning-bg) !important;
  color: var(--warning) !important;
}

.badge.bg-secondary {
  background: var(--bg-card-hover) !important;
  color: var(--text-secondary) !important;
}

/* ===== ALERTS ===== */
.alert {
  border-radius: var(--radius-md);
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.alert-success {
  background: var(--success-bg);
  color: #065f46;
  border-left: 4px solid var(--success);
}

.alert-danger {
  background: var(--danger-bg);
  color: #991b1b;
  border-left: 4px solid var(--danger);
}

.alert-warning {
  background: var(--warning-bg);
  color: #92400e;
  border-left: 4px solid var(--warning);
}

.alert-info {
  background: var(--info-bg);
  color: #1e40af;
  border-left: 4px solid var(--info);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 1.5rem 0 1rem;
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-header h1 i {
  color: var(--primary);
  font-size: 1.5rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-glow);
}

.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FIELD EDITOR ===== */
.field-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  cursor: move;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.field-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.field-item.dragging {
  opacity: 0.5;
  border: 2px dashed var(--primary);
}

.field-item .drag-handle {
  color: var(--text-muted);
  cursor: grab;
  font-size: 1.25rem;
}

.field-item .field-info {
  flex: 1;
}

.field-item .field-name {
  font-weight: 600;
  color: var(--text);
}

.field-item .field-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.field-item .field-type code {
  background: var(--info-bg);
  color: var(--primary);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.field-item .field-actions {
  display: flex;
  gap: 0.5rem;
}

/* ===== PLACEHOLDERS ===== */
.placeholder-tag {
  display: inline-block;
  background: var(--info-bg);
  color: var(--primary-dark);
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  margin: 0.125rem;
}

.placeholder-tag:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.8;
}

.empty-state h5 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== MODALS ===== */
.modal-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-bottom: none;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background: var(--bg-body);
}

.modal-backdrop {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

/* ===== DROPDOWNS ===== */
.dropdown-menu {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 180px;
}

.dropdown-item {
  color: var(--text-secondary);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-card-hover);
  color: var(--text);
}

.dropdown-item.text-danger {
  color: var(--danger);
}

.dropdown-item.text-danger:hover {
  background: var(--danger-bg);
}

.dropdown-divider {
  border-color: var(--border);
  margin: 0.5rem 0;
}

/* ===== LIST GROUP ===== */
.list-group {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.list-group-item:last-child {
  border-bottom: none;
}

.list-group-item-action:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.list-group-item.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-color: transparent;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  margin: 0.125rem 0.25rem;
}

/* ===== NAV TABS ===== */
.nav-tabs {
  border-bottom: 2px solid var(--border);
  gap: 0.25rem;
}

.nav-tabs .nav-link {
  background: transparent;
  border: none;
  color: var(--text-muted) !important;
  padding: 0.875rem 1.25rem;
  font-weight: 500;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: all var(--transition-fast);
  margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
  color: var(--primary) !important;
  background: var(--bg-card-hover);
}

.nav-tabs .nav-link.active {
  background: var(--bg-white) !important;
  color: var(--primary) !important;
  border-bottom: 3px solid var(--primary);
}

/* ===== UTILITIES ===== */
.text-muted {
  color: var(--text-muted) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-white {
  color: white !important;
}

.bg-light {
  background: var(--bg-body) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border) !important;
}

.fw-bold, strong {
  font-weight: 600;
}

hr {
  border-color: var(--border);
  opacity: 1;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Code */
code {
  background: var(--info-bg);
  color: var(--primary-dark);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
}

/* Font Monospace for editors */
.font-monospace {
  font-family: 'JetBrains Mono', 'Fira Code', monospace !important;
  font-size: 0.9rem !important;
  background: var(--bg-body);
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: -280px;
    width: 280px;
    top: 60px;
    height: calc(100vh - 60px);
    z-index: 999;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
  }

  .sidebar.open {
    left: 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .stat-card .stat-value {
    font-size: 2rem;
  }

  .card-body {
    padding: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.card {
  animation: fadeIn 0.4s ease-out;
}

.stat-card:hover::before {
  animation: pulse 2s ease-in-out infinite;
}

/* Loading Spinner */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner-border {
  color: var(--primary);
}

/* Iframe for PDF */
iframe {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .sidebar, .navbar {
    display: none;
  }

  main {
    margin: 0;
    padding: 0;
  }
}

/* ===== SUMMERNOTE WYSIWYG EDITOR ===== */
.note-editor {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.note-editor.note-frame {
  box-shadow: none !important;
}

.note-editor .note-toolbar {
  background: var(--bg-body) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 0.5rem !important;
}

.note-editor .note-btn {
  background: var(--bg-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-secondary) !important;
  padding: 0.375rem 0.625rem !important;
  transition: all var(--transition-fast) !important;
}

.note-editor .note-btn:hover {
  background: var(--bg-card-hover) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.note-editor .note-btn.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}

.note-editor .note-editing-area {
  background: var(--bg-white) !important;
}

.note-editor .note-editable {
  background: var(--bg-white) !important;
  color: var(--text) !important;
  padding: 1rem !important;
}

.note-editor .note-editable:focus {
  outline: none !important;
}

.note-editor .note-placeholder {
  color: var(--text-muted) !important;
  padding: 1rem !important;
}

.note-editor .note-statusbar {
  background: var(--bg-body) !important;
  border-top: 1px solid var(--border) !important;
}

.note-editor .note-resizebar {
  background: var(--bg-body) !important;
}

/* Dropdown-Menüs im Editor */
.note-editor .dropdown-menu {
  background: var(--bg-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
}

.note-editor .dropdown-item {
  color: var(--text-secondary) !important;
}

.note-editor .dropdown-item:hover {
  background: var(--bg-card-hover) !important;
  color: var(--primary) !important;
}
