.eclipse-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eclipse-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.eclipse-type-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.eclipse-type-badge.solar {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
}

.eclipse-type-badge.lunar {
  background: rgba(167,139,250,0.15);
  color: #a78bfa;
}

.eclipse-info {
  flex: 1;
  min-width: 160px;
}

.eclipse-date {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.eclipse-subtype {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 4px;
}

.eclipse-region {
  font-size: 12px;
  color: var(--text3);
}

.eclipse-duration {
  text-align: right;
  flex-shrink: 0;
}

.eclipse-duration .dur-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.eclipse-duration .dur-label {
  font-size: 11px;
  color: var(--text3);
}

.eclipse-type-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.type-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  cursor: pointer;
  transition: all var(--transition);
}

.type-btn:hover, .type-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
