/* ===== LGSports Chat Header ===== */
/* 主题切换按钮 + 主题菜单 */
/* 来源：原 chat.css 的 Theme Toggle 部分 */

/* ===== Theme Toggle ===== */
.theme-toggle {
  position: relative;
}

.theme-menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.theme-menu-btn:hover {
  background: #f5f5f5;
}

.theme-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 120px;
  z-index: 1000;
  display: none;
}

.theme-menu.show {
  display: block;
}

.theme-option {
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.theme-option:hover {
  background: #f5f5f5;
}

.theme-option.active {
  background: #e3e7ff;
  color: #667eea;
  font-weight: 600;
}

.theme-icon {
  font-size: 16px;
}
