/* 货币转换器小工具 */
#currency-converter {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#currency-converter .item-headline {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 10px 15px 0;
  margin-bottom: 0;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

#currency-converter .item-headline i {
  margin-right: 8px;
  color: #49b1f5;
}

.currency-converter-container {
  position: relative;
  width: 100%;
}

/* 深色模式适配 */
[data-theme="dark"] #currency-converter {
  background: #2a2a2a;
}

/* 移动端优化 */
@media (max-width: 768px) {
  #currency-converter {
    margin-bottom: 0.8rem;
  }
}