/* ===== 更多 Tab ===== */
.more-page { padding: 16px 20px 32px; }
.more-page-desc {
  font-size: 14px; color: var(--color-text-secondary); margin: 0 0 16px;
}
.more-action-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.more-action-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 16px; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-card); cursor: pointer; text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.more-action-card:active { opacity: 0.85; }
.more-action-icon { font-size: 28px; margin-bottom: 10px; }
.more-action-title { font-size: 15px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 4px; }
.more-action-desc { font-size: 12px; color: var(--color-text-secondary); line-height: 1.4; }

#page-shorthand.is-busy:not(.is-recording) .shorthand-mic-btn { opacity: 0.65; pointer-events: none; }

.shorthand-note-list {
  width: 100%; margin-bottom: 8px;
}
.shorthand-note-list-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600; color: var(--color-text-secondary);
  margin-bottom: 8px; padding: 0 4px;
}
.shorthand-note-list-head button {
  border: none; background: none; color: var(--color-brand);
  font-size: 13px; cursor: pointer;
}
.shorthand-note-item {
  display: block; width: 100%; text-align: left;
  padding: 12px 14px; margin-bottom: 8px;
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-card); cursor: pointer;
}
.shorthand-note-item-title {
  display: block; font-size: 15px; font-weight: 600;
  color: var(--color-text-primary); margin-bottom: 4px;
}
.shorthand-note-item-preview {
  display: block; font-size: 13px; color: var(--color-text-secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.shorthand-more-sheet {
  display: none; position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
}
.shorthand-more-sheet.open { display: block; pointer-events: auto; }
