/* V4.6.9.13 rebased dark mode surface fix */
/* Goal: soften the awkward inner black slab on note cards in dark mode,
   without touching overflow, swipe rails, or menu behavior. */

html.dark .note-card-body{
  background: color-mix(in srgb, var(--surface-panel) 92%, var(--surface-soft)) !important;
  border-radius: inherit !important;
}

html.dark .note-card .card-top,
html.dark .note-card .card-content,
html.dark .note-card .card-tags,
html.dark .note-card .card-footer{
  background: transparent !important;
}

html.dark .note-card .card-content > *,
html.dark .note-card .card-content p,
html.dark .note-card .card-content ul,
html.dark .note-card .card-content ol,
html.dark .note-card .card-content li{
  background: transparent !important;
}

html.dark .note-card .card-content{
  color: rgba(255,255,255,.92) !important;
}

html.dark .note-card .card-footer{
  color: rgba(255,255,255,.58) !important;
}
