.note-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow var(--transition);
}
.note-card:hover { box-shadow: var(--shadow-md); }
.note-card.checked { opacity: .6; }
.note-card.checked .note-title { text-decoration: line-through; }

.note-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 2px;
}
.note-body-text { font-size: .85rem; color: var(--c-muted); margin-top: 3px; }
.note-meta { font-size: .75rem; color: var(--c-muted); margin-top: 4px; }

.note-title[contenteditable=true]:focus,
.note-body-text[contenteditable=true]:focus {
  outline: none;
  background: var(--c-bg);
  border-radius: 4px;
  padding: 2px 4px;
  margin: -2px -4px;
}

.drag-handle {
  color: var(--c-border);
  cursor: grab;
  font-size: 1rem;
  padding: 2px 0;
  user-select: none;
  touch-action: none;
}
.drag-handle:active { cursor: grabbing; }

.event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .95rem;
}
