.base-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.base-color-picker {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #555;
}

.base-color-picker input {
  margin-top: 6px;
  width: 60px;
  height: 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.base-row .secondary {
  padding: 10px 18px;
  background: white;
  color: #185fa5;
  border: 1px solid #185fa5;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.base-row .secondary:hover {
  background: #f0f6fc;
}

.scheme-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.scheme-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  color: #555;
}

.scheme-btn.active,
.scheme-btn:hover {
  border-color: #185fa5;
  color: #185fa5;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.color-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.color-swatch {
  height: 90px;
  cursor: pointer;
  position: relative;
}

.color-info {
  padding: 10px 12px;
}

.color-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.color-formats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.format-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
}

.format-row:hover {
  background: #f5f5f5;
}

.format-label {
  color: #999;
}

.export-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.export-row button {
  padding: 9px 18px;
  background: white;
  color: #185fa5;
  border: 1px solid #185fa5;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.export-row button:hover {
  background: #f0f6fc;
}