.vulnerability {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    flex-direction: column;
}

.vulnerability-text {
    width: 840px;
}

.issue-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
}

.issue-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px;
}

.issue-table th,
.issue-table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
}

.issue-table thead {
  background-color: #f9f9f9;
  font-weight: bold;
}

.issue-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

@media only screen and (max-width: 900px) {
    .vulnerability-text {
        width: 80%;
    }
}
