/* ========== 今天 / 黄历 下拉面板 ========== */
.dropdown-panel {
  position: fixed;
  top: 62px;
  right: 20px;
  width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--bg-dropdown);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.dropdown-panel.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---- 历史上的今天 ---- */
.today-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-color);
}
.today-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
}
.today-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.today-list {
  padding: 8px 0;
}
.today-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 16px;
  transition: background 0.2s;
}
.today-item:hover {
  background: var(--bg-hover);
}
.today-item-rank {
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 34px;
}
.today-item-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ---- 黄历 ---- */
.almanac-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-color);
}
.almanac-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
}
.almanac-lunar {
  font-size: 13px;
  color: var(--text-primary);
  margin-top: 4px;
}
.almanac-ganzhi {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.almanac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.almanac-item {
  background: var(--bg-dropdown);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.almanac-label {
  font-size: 10px;
  color: var(--text-muted);
}
.almanac-value {
  font-size: 12px;
  color: var(--text-primary);
}
.almanac-section {
  padding: 10px 16px;
}
.almanac-section-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.almanac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.almanac-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 10px;
}
.almanac-tag.yi-tag {
  background: rgba(82, 196, 26, 0.12);
  color: #52c41a;
}
.almanac-tag.ji-tag {
  background: var(--tag-hot-bg);
  color: var(--tag-hot);
}
.almanac-tag.jishen-tag {
  background: var(--tag-new-bg);
  color: var(--tag-new);
}
.almanac-tag.xiongshen-tag {
  background: var(--bg-hover);
  color: var(--text-muted);
}
.almanac-pengzu {
  padding: 10px 16px 14px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
}
.dropdown-empty {
  padding: 30px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

@media (max-width: 480px) {
  .dropdown-panel {
    right: 8px;
    left: 8px;
    width: auto;
  }
}
