#check-btn {
  margin-top: 3rem;
}

.vulnerabilities-container {
  max-height: 50rem;
  overflow-y: auto;
}

.vulnerability-item {
  margin: 15px 0;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.vulnerability-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.high {
  border-left: 4px solid #ff4444;
  background: linear-gradient(to right, #ffeeee, #fff);
}
.medium {
  border-left: 4px solid #ffbb33;
  background: linear-gradient(to right, #fff8ee, #fff);
}
.low {
  border-left: 4px solid #00c851;
  background: linear-gradient(to right, #eeffee, #fff);
}
.info {
  border-left: 4px solid #33b5e5;
  background: linear-gradient(to right, #eef6ff, #fff);
}
.vulnerability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.vulnerability-header h4 {
  font-size: 1.5rem;
}
.vulnerability-header span {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}
.vulnerability-content {
  font-size: 1.2rem;
}
.vulnerability-content ul {
  list-style: none;
}

.vulnerability-content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.risk-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
  color: white;
}
.risk-high {
  background-color: #ff4444;
}
.risk-medium {
  background-color: #ffbb33;
}
.risk-low {
  background-color: #00c851;
}
.risk-info {
  background-color: #33b5e5;
}
.code-block {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  font-family: monospace;
  overflow-x: auto;
  margin: 10px 0;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}
.stat-card {
  padding: 15px;
  border-radius: 6px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.stat-card h4 {
  font-size: 1.4rem;
}
.stat-value {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}
.stat-card .stat-breakdown {
  font-size: 1.2rem;
}
.line-reference {
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  margin-left: 10px;
}
.solution-list {
  list-style-type: none;
  padding-left: 0;
}
.solution-list li {
  margin: 5px 0;
  padding-left: 20px;
  position: relative;
}
.solution-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #666;
}
.severity-meter {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  margin: 10px 0;
  overflow: hidden;
}
.severity-fill {
  height: 100%;
  transition: width 0.3s ease;
}
.high .severity-fill {
  background: #ff4444;
}
.medium .severity-fill {
  background: #ffbb33;
}
.low .severity-fill {
  background: #00c851;
}
