/* ===== My HODLings (My Computer) ===== */
.my-hodlings-layout {
  display: flex;
  height: 100%;
}

.my-hodlings-content {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #fff;
}

.hodlings-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  padding: 4px 0;
  border-bottom: 1px solid #c8c4b8;
  margin-bottom: 8px;
  font-family: var(--font-system);
}

.hodlings-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 11px;
  font-family: var(--font-system);
}

.hodlings-item:hover {
  background: #e8f0ff;
}

.hodlings-item-icon {
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hodlings-item-info {
  flex: 1;
}

.hodlings-item-name {
  font-weight: 700;
  color: #000;
}

.hodlings-item-desc {
  color: #666;
  font-size: 10px;
}

.token-info-card {
  background: #f0f0f0;
  border: 1px solid #d4d0c8;
  border-radius: 4px;
  padding: 10px;
  margin: 8px 0;
  font-family: var(--font-system);
  font-size: 11px;
}

.token-info-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid #e8e4d8;
}

.token-info-row:last-child {
  border-bottom: none;
}

.token-info-label {
  color: #666;
  font-weight: 700;
}

.token-info-value {
  color: #000;
  word-break: break-all;
  text-align: right;
  max-width: 300px;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hodl-orange);
  font-size: 11px;
  padding: 0 4px;
}

.copy-btn:hover {
  text-decoration: underline;
}
