.notes-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.notes-toolbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.notes-toolbar .search-input {
  flex: 1;
  min-width: 160px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--bg);
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color .15s;
}
.notes-toolbar .search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,92,230,0.1);
}
.notes-type-btns {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.notes-type-btn {
  padding: 7px 14px;
  font-size: 13px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all .15s;
}
.notes-type-btn.active {
  background: var(--accent);
  color: #fff;
}
.notes-tag-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.note-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.notes-empty {
  grid-column: 1 / -1;
}
.note-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  position: relative;
}
.note-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.note-card.pinned {
  border-color: var(--accent);
  background: rgba(94,92,230,0.03);
}
.note-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.note-card-type {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
}
.note-card-pin {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  padding: 2px;
  line-height: 1;
}
.note-card-pin.active {
  color: var(--accent);
}
.note-detail-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: calc(100vh - 84px);
}
.note-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.note-detail-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.note-detail-topbar-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.note-detail-surface {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15,23,42,0.08);
  padding: 24px;
}
.notes-tag-chip {
  font-size: 11px;
  padding: 2px 6px;
}
.note-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.note-card-preview {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.note-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.note-card-record {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(22,163,74,0.08);
  color: var(--green);
}
.note-card-actions {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.note-card-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 4px;
}
.note-card-actions button:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.notes-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.notes-pagination .topbar-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.notes-pagination-text {
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.note-form-field {
  margin-bottom: 16px;
}
.note-form-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.note-form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  resize: vertical;
  color: var(--text-primary);
}
.note-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,92,230,0.1);
}
.note-tag-input-hint {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-tertiary);
}
.note-label-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.note-label-del {
  color: var(--red);
  font-size: 12px;
  padding: 2px 8px;
}
.note-label-empty {
  color: var(--text-secondary);
  font-size: 13px;
}
.note-label-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.note-label-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--bg);
  color: var(--text-primary);
  font-family: inherit;
}
.note-label-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,92,230,0.1);
}
.note-label-color {
  width: 40px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  background: var(--bg);
}
.note-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.note-detail-header-main {
  flex: 1;
  min-width: 0;
}
.note-detail-header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.note-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 10px;
}
.note-detail-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 8px;
  word-break: break-word;
}
.note-detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-tertiary);
}
.note-detail-section {
  margin-bottom: 18px;
}
.note-detail-section:last-child {
  margin-bottom: 0;
}
.note-detail-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.note-detail-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.note-detail-empty {
  font-size: 13px;
  color: var(--text-secondary);
}
.note-detail-record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
}
.note-detail-record-main {
  min-width: 0;
}
.note-detail-record-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.note-detail-record-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}
.note-detail-record-amount {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.note-detail-plain,
.note-detail-html {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  padding: 18px;
  color: var(--text-primary);
}
.note-detail-plain {
  line-height: 1.8;
  word-break: break-word;
}
.note-detail-html {
  line-height: 1.8;
}
.note-detail-html h1,
.note-detail-html h2,
.note-detail-html h3 {
  margin: 0 0 12px;
  color: var(--text-primary);
}
.note-detail-html p,
.note-detail-html ul,
.note-detail-html ol,
.note-detail-html blockquote,
.note-detail-html pre {
  margin: 0 0 12px;
}
.note-detail-html p:last-child,
.note-detail-html ul:last-child,
.note-detail-html ol:last-child,
.note-detail-html blockquote:last-child,
.note-detail-html pre:last-child {
  margin-bottom: 0;
}
.note-detail-html blockquote {
  padding-left: 14px;
  border-left: 3px solid var(--border);
  color: var(--text-secondary);
}
.note-detail-html pre {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  overflow-x: auto;
}
.note-detail-html a {
  color: var(--accent);
}
/* === 编辑器：双栏布局 === */
.note-editor-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 52px);
}

/* 顶栏 */
.note-editor-topbar {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  gap: 12px;
}
.note-editor-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.note-editor-back {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 4px 10px;
  transition: all .15s;
  font-family: inherit;
  line-height: 1;
}
.note-editor-back:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.note-editor-topbar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.note-editor-topbar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.note-editor-status {
  display: flex;
  align-items: center;
  gap: 5px;
}
.note-editor-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transition: background .15s;
}
.note-editor-status-dot.dirty {
  background: var(--red);
}
.note-editor-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.note-editor-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all .15s;
  font-family: inherit;
}
.note-editor-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.note-editor-btn.primary {
  background: #171717;
  color: #fff;
  border-color: #171717;
}
.note-editor-btn.primary:hover {
  background: #333;
}
.note-editor-btn.danger {
  color: var(--red);
  border-color: rgba(220,38,38,0.2);
}
.note-editor-btn.danger:hover {
  background: rgba(220,38,38,0.06);
}

/* 双栏主体 */
.note-editor-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.note-quick-editor-body {
  display: flex;
  flex: 1;
  min-height: 0;
}
.note-editor-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 28px 32px;
}
.note-quick-editor-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 32px;
}
.note-quick-editor-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.note-quick-editor-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.note-quick-editor-desc {
  font-size: 13px;
  color: var(--text-secondary);
}
.note-quick-editor-textarea {
  width: 100%;
  flex: 1;
  min-height: 360px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.8;
  font-family: inherit;
  resize: vertical;
}
.note-quick-editor-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,92,230,0.1);
}

/* 标题 */
.note-editor-title {
  width: 100%;
  border: none;
  outline: none;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
  font-family: inherit;
}
.note-editor-title::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Quill 编辑器容器 */
.note-editor-quill {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.note-editor-quill .ql-toolbar {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 8px 16px;
}
.note-editor-quill .ql-toolbar .ql-formats {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid var(--border);
}
.note-editor-quill .ql-toolbar .ql-formats:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.note-editor-quill .ql-toolbar button {
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 4px;
  transition: all .15s;
}
.note-editor-quill .ql-toolbar button:hover {
  background: var(--bg-hover);
}
.note-editor-quill .ql-toolbar button.ql-active {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.note-editor-quill .ql-toolbar .ql-stroke {
  stroke: var(--text-tertiary);
  transition: stroke .15s;
}
.note-editor-quill .ql-toolbar .ql-fill {
  fill: var(--text-tertiary);
  transition: fill .15s;
}
.note-editor-quill .ql-toolbar button:hover .ql-stroke,
.note-editor-quill .ql-toolbar button.ql-active .ql-stroke {
  stroke: var(--text-primary);
}
.note-editor-quill .ql-toolbar button:hover .ql-fill,
.note-editor-quill .ql-toolbar button.ql-active .ql-fill {
  fill: var(--text-primary);
}
/* Quill 下拉选择器 */
.note-editor-quill .ql-toolbar .ql-picker {
  color: var(--text-tertiary);
  font-size: 12px;
  font-family: inherit;
}
.note-editor-quill .ql-toolbar .ql-picker-label {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2px 6px;
  transition: all .15s;
}
.note-editor-quill .ql-toolbar .ql-picker-label:hover,
.note-editor-quill .ql-toolbar .ql-picker.ql-expanded .ql-picker-label {
  background: var(--bg-hover);
  border-color: var(--border);
  color: var(--text-primary);
}
.note-editor-quill .ql-toolbar .ql-picker-label .ql-stroke {
  stroke: var(--text-tertiary);
}
.note-editor-quill .ql-toolbar .ql-picker-label:hover .ql-stroke {
  stroke: var(--text-primary);
}
.note-editor-quill .ql-toolbar .ql-picker-options {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 4px;
}
.note-editor-quill .ql-toolbar .ql-picker-item {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all .1s;
}
.note-editor-quill .ql-toolbar .ql-picker-item:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
/* Quill 编辑区 */
.note-editor-quill .ql-container {
  border: none;
  font-size: 15px;
  font-family: inherit;
  flex: 1;
}
.note-editor-quill .ql-editor {
  padding: 24px 24px 60px;
  min-height: 400px;
  line-height: 1.8;
  color: var(--text-primary);
}
.note-editor-quill .ql-editor:focus {
  outline: none;
}
.note-editor-quill .ql-editor.ql-blank::before {
  color: var(--text-tertiary);
  font-style: normal;
  left: 24px;
  right: 24px;
}
/* 内容排版 */
.note-editor-quill .ql-editor h1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.note-editor-quill .ql-editor h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.note-editor-quill .ql-editor h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.note-editor-quill .ql-editor p {
  margin-bottom: 6px;
}
.note-editor-quill .ql-editor blockquote {
  border-left: 3px solid var(--border-hover);
  padding-left: 14px;
  color: var(--text-secondary);
  margin: 8px 0;
}
.note-editor-quill .ql-editor pre.ql-syntax {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: auto;
}
.note-editor-quill .ql-editor a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Quill tooltip */
.note-editor-quill .ql-tooltip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 6px 10px;
  color: var(--text-primary);
  font-size: 13px;
}
.note-editor-quill .ql-tooltip input[type=text] {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  background: var(--bg);
  outline: none;
  font-family: inherit;
}
.note-editor-quill .ql-tooltip input[type=text]:focus {
  border-color: var(--border-hover);
}
.note-editor-quill .ql-tooltip a {
  color: var(--text-secondary);
  font-size: 12px;
}

/* 右侧边栏 */
.note-editor-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow-y: auto;
  padding: 20px;
}
.note-editor-sidebar-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.note-editor-sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.note-editor-sidebar-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.note-editor-sidebar select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  background: var(--bg);
  color: var(--text-primary);
  font-family: inherit;
}
.note-editor-sidebar select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,92,230,0.1);
}
.note-editor-sidebar .note-label-input {
  width: 100%;
}
.note-tag-input-hint-sidebar {
  margin-top: 8px;
}

/* === Toggle 开关 === */
.note-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.note-toggle-label {
  font-size: 13px;
  color: var(--text-primary);
}
.note-toggle-track {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: rgba(0,0,0,0.12);
  position: relative;
  transition: background .15s;
  flex-shrink: 0;
}
.note-toggle-track.active {
  background: #171717;
}
.note-toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform .15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.note-toggle-track.active .note-toggle-thumb {
  transform: translateX(16px);
}

/* === 响应式 === */
@media (max-width: 1024px) {
  .note-editor-sidebar {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .notes-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .notes-toolbar-actions {
    width: 100%;
  }
  .notes-toolbar-actions .topbar-btn {
    flex: 1;
  }
  .note-cards {
    grid-template-columns: 1fr;
  }
  .note-detail-page {
    gap: 14px;
  }
  .note-detail-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .note-detail-surface {
    padding: 16px;
  }
  .note-editor-page {
    height: auto;
    min-height: calc(100vh - 52px);
  }
  .note-quick-editor-body {
    flex-direction: column;
  }
  .note-editor-body {
    flex-direction: column;
  }
  .note-editor-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .note-editor-main {
    padding: 20px 16px;
  }
  .note-quick-editor-main {
    padding: 20px 16px;
  }
  .note-editor-title {
    font-size: 20px;
  }
  .note-quick-editor-heading {
    font-size: 20px;
  }
  .note-quick-editor-textarea {
    min-height: 280px;
  }
  .note-editor-quill .ql-editor {
    padding: 16px 16px 32px;
    min-height: 300px;
  }
  .note-editor-quill .ql-toolbar {
    padding: 8px 12px;
  }
  .note-editor-topbar-center {
    display: none;
  }
  .note-editor-topbar {
    padding: 0 12px;
  }
  .note-editor-topbar-right {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .note-editor-btn {
    min-height: 36px;
  }
  .note-editor-quill .ql-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .note-editor-quill .ql-toolbar .ql-formats {
    margin-right: 8px;
    padding-right: 8px;
  }
  .note-detail-header {
    flex-direction: column;
  }
  .note-detail-record {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .note-editor-topbar {
    height: auto;
    min-height: 52px;
    padding: 8px 10px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .note-editor-topbar-right {
    width: 100%;
    justify-content: stretch;
  }
  .note-editor-btn {
    flex: 1;
    text-align: center;
    min-width: 72px;
  }
  .note-editor-main {
    padding: 14px 10px;
  }
  .note-quick-editor-main {
    padding: 14px 10px;
  }
  .note-editor-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .note-quick-editor-heading {
    font-size: 18px;
  }
  .note-quick-editor-textarea {
    min-height: 220px;
    padding: 14px;
    font-size: 14px;
    line-height: 1.7;
  }
  .note-editor-quill .ql-editor {
    padding: 12px 12px 24px;
    min-height: 240px;
    font-size: 14px;
    line-height: 1.7;
  }
  .note-editor-quill .ql-toolbar {
    padding: 6px 8px;
  }
  .note-editor-sidebar {
    padding: 12px;
  }
  .note-label-form {
    flex-wrap: wrap;
  }
  .note-label-color,
  .note-label-form .topbar-btn {
    width: 100%;
  }
  .note-detail-title {
    font-size: 20px;
  }
  .note-detail-topbar-left {
    align-items: flex-start;
  }
  .note-detail-header-actions {
    width: 100%;
  }
  .note-detail-header-actions .note-editor-btn {
    flex: 1;
    text-align: center;
  }
}
