/* Unit converter: keep styles consistent with global.css */

.swapRow {
  display: flex;
  justify-content: center;
  margin: 6px 0;
}

.btnGhost {
  background: rgba(159, 176, 200, .08);
  border: 1px solid rgba(159, 176, 200, .14);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btnGhost:hover {
  filter: brightness(0.98);
}

.hint {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}


/* Category dropdown should use full available width */
#ucCatDD {
  width: 100%;
}

#ucCatDD .ddBtn {
  width: 100%;
  justify-content: space-between;
}

/* Suggested conversions */
.ucSugBtns {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}

.ucSugBtn {
    font-size: small;
    width: 145px;
  }

@media (max-width: 620px) {
  .ucSugBtn {
    font-size: small;
  }
}