.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modalContent {
  background-color: #fefefe;
  margin: 9% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}

.modalContent > h2 {
  text-align: center;
}

.close {
  color: #444;
  float: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: -7px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.userTypeTable {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.userTypeTable thead tr {
  background-color: #172d78;
  color: #ffffff;
  text-align: left;
}

.userTypeTable th,
.userTypeTable td {
  padding: 12px 15px;
}

.userTypeTable tbody tr {
  border-bottom: 1px solid #dddddd;
}

.userTypeTable tbody tr td:nth-child(1) {
  font-weight: 600;
}

.userTypeTable tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
.userTypeTable tbody tr:last-of-type {
  border-bottom: 2px solid #172d78;
}
