#hr-app {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

input[type="number"] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 2px;
}

button {
  width: 50%;
  background-color: #FF1861;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 2px;
  cursor: pointer;
	font-weight: bold;
}

button:hover {
  background-color: #1d3461;
}

#output {
  margin: 20px 0;
}

table {
  width: 80%;
  border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #1d3461;
  color: white;
}

tr:nth-child(2) td {
  background-color: #e7f8ff;
}

tr:nth-child(3) td {
  background-color: blue;
	color: white;
}

tr:nth-child(4) td {
  background-color: #45f248;
}

tr:nth-child(5) td {
  background-color: orange;
}

tr:nth-child(6) td {
  background-color: red;
	color: white;
}