.stock-card {
  background: #1a1a2e;
  border: 1px solid #2a2a3e;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  transition: all 0.3s;
}
.stock-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,150,255,0.2);
}
.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.symbol {
  font-size: 24px;
  font-weight: bold;
  color: #00d4ff;
}
.score {
  font-size: 32px;
  font-weight: bold;
}
.high-score { color: #4ade80; }
.medium-score { color: #ffc107; }
.signal {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  border-radius: 20px;
  padding: 5px 15px;
  margin: 5px;
  font-size: 14px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}
.metric {
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 8px;
}
.metric-label {
  color: #808080;
  font-size: 12px;
}
.metric-value {
  font-size: 18px;
  font-weight: bold;
  color: #e0e0e0;
}
.no-candidates {
  text-align: center;
  padding: 50px;
  color: #808080;
}