body {
  font-family: Arial, sans-serif;
  background: #eef3f8;
}

.container {
  width: 70%;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

textarea {
  width: 90%;
  height: 180px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
}

select, button {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
}

button {
  background: #1976d2;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #125aa0;
}

.result-box {
  background: #f4f9ff;
  margin-top: 25px;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.progress {
  width: 100%;
  background: #ddd;
  border-radius: 10px;
  margin-top: 10px;
}

.progress-bar {
  height: 20px;
  background: #1976d2;
  color: white;
  text-align: center;
  border-radius: 10px;
}

.found {
  color: green;
}

.missing {
  color: red;
}