.widget-container {
  outline: 0.2rem solid #ccc;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: row;
  width: 40rem;
}

.available-states {
  border-collapse: collapse;
  width: 100%;
  background-color: #eeeeee;
}

.available-states td {
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.available-states td:hover {
  background-color: #bfdaf3;
  cursor: pointer;
}

.available-cities {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

.available-cities tr,
td {
  padding: 0.5rem;
  text-align: center;
}

.available-cities td {
  border-bottom: #797979 solid 0.1rem;
}

.available-cities tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.active {
  color: #6fa8dc;
}

.inactive {
  color: #999999;
}

.active-title {
  background-color: #9fc5e8;
}

.table-header {
  display: flex;
  flex: column;
  width: 100%;
  text-align: center;
}
.table-header h2 {
  font-size: 1.25rem;
  margin-right: 0.1rem;
  margin-left: 0.5rem;
}

.cities-available-container {
  width: 100%;
}
