
/* 入口主文案：容器变窄时优雅省略，不挤压图标 */
.lg-cal-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 默认态不再展示右侧灰色小字（文案已并入主标签），仅提示态可见 */
.lg-cal-note:not(.lg-cal-note--ready) { display: none !important; }
.lg-cal-note {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.45);
}
/* 「新速记就绪」提示态：无背景，系统蓝文字 + 呼吸蓝点 */
.lg-cal-note.lg-cal-note--ready {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 1px 0;
  cursor: pointer;
  color: #007AFF;
  background: none;
  font-weight: 500 !important;
  pointer-events: auto;
  transition: color .15s;
}
.lg-cal-note.lg-cal-note--ready:hover {
  color: #0062CC;
}
.lg-cal-note.lg-cal-note--ready .lg-cal-note__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #007AFF;
  flex: 0 0 auto;
  animation: lgCalNotePulse 1.8s ease-out infinite;
}
@keyframes lgCalNotePulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.45); }
  70%  { box-shadow: 0 0 0 5px rgba(0, 122, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lg-cal-note.lg-cal-note--ready .lg-cal-note__dot { animation: none; }
}
/* 保险：即使原生角标被重新渲染，也在「日历」入口内隐藏它 */
.session-sidebar__nav-btn[title="日历"] .session-sidebar__nav-badge,
.session-sidebar__nav-btn[aria-label="日历"] .session-sidebar__nav-badge {
  display: none !important;
}
  