.pdmc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:20px;
}
.pdmc-card {
  background:#141a22;
  border:1px solid #1f2731;
  border-radius:14px;
  padding:18px;
  color:#e8f0f6;
}
.pdmc-card-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.pdmc-price {
  color:#7ee787;
  font-weight:bold;
  font-size:18px;
}
.pdmc-tags { margin:6px 0 10px; }
.pdmc-tag {
  display:inline-block;
  margin:0 4px 4px 0;
  padding:3px 8px;
  border-radius:999px;
  font-size:12px;
  background:#203042;
  color:#bfe3ff;
}
.pdmc-metrics span { margin-right:10px; }
.pdmc-bar {
  height:6px;
  background:#203042;
  border-radius:3px;
  margin-top:4px;
}
.pdmc-bar div {
  height:100%;
  background:#7ee787;
  border-radius:3px;
}
.pdmc-actions {
  margin-top:12px;
  display:flex;
  gap:10px;
}
.pdmc-actions .pdmc-add {
  flex:1;
  background:#2b884d;
  border:none;
  border-radius:8px;
  padding:8px;
  color:#fff;
  cursor:pointer;
}
.pdmc-actions .pdmc-details {
  flex:1;
  text-align:center;
  background:#1f2a38;
  border-radius:8px;
  padding:8px;
  color:#fff;
  text-decoration:none;
}
