body {
  background: #1e1e1e;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

:root {
  --col-width: 120px;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
}

th, td {
  border: 1px solid #333;
  text-align: center;
  padding: 6px;
  font-size: 14px;
  word-wrap: break-word;
  width: var(--col-width);
  overflow-wrap: break-word;
}

th {
  background: #2c2c2c;
  z-index: 2;
  white-space: normal;
  padding: 6px 10px;
}

.rowHeader {
  background: #2c2c2c;
  position: sticky;
  left: 0;
  z-index: 3;
  width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* statuses */
.CONFLICT { background: #c62828; }
.REQUIRE { background: #2e7d32; }
.NEUTRAL { background: #616161; }
.PROVIDES { background: #71439e; }

.highlight { outline: 3px solid #fff; }

/* search box container */
.search-container {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}