.note-show {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}

.note-show__title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.note-show__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.note-show__body {
  font-size: 15px;
  line-height: 1.5;
}

.note-show__edit {
  margin-top: 6px;
}

.note-show__edit-fields {
  display: grid;
  gap: 10px;
}

.note-show__edit-title,
.note-show__edit-body {
  width: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 12px 12px;
  outline: none;
  font: inherit;
}

.note-show__edit-title:focus-visible,
.note-show__edit-body:focus-visible {
  background: rgba(37, 99, 235, 0.06);
}

.note-show__edit-title {
  font-size: 18px;
}

.note-show__edit-body {
  resize: none;
  overflow: hidden;
  min-height: 180px;
  font-size: 15px;
  line-height: 1.5;
}

.note-show__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.note-show__tags {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.note-show__tags-header {
  margin-bottom: 8px;
  color: var(--muted);
}

.note-show__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.note-show__tag-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.note-show__tag-input {
  flex: 1;
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  outline: none;
}

.note-show__tag-input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.pill-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-group form {
  display: inline;
  margin: 0;
}


