.root {
  min-height: calc(100vh - 72px);
  display: flex;
}

.root > .row {
  flex-grow: 1;
}

main {
  background-color: #f2f2f2;
  padding: 1rem;
  overflow: scroll;
  height: calc(100vh - 72px);
}

main::-webkit-scrollbar {
  display: none;
}

aside {
  background-color: white;
  padding: 0 !important;
  filter: drop-shadow(0.2rem 0 0.5rem rgba(0, 0, 0, 0.1));
}

aside > ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

aside > ul > li {
  cursor: pointer;
}

aside > ul > .hover:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

aside > ul > li > a {
  padding: 0.8rem 0 0.8rem 2rem;
  display: block;
  text-decoration: none !important;
  color: black !important;
  font-weight: 600;
}

.blood-centers-aside {
  padding: 0.8rem 0 0.8rem 2rem;
}

.blood-centers-aside a {
  text-decoration: none !important;
  color: gray !important;
}

.blood-availability-aside {
  padding: 0.8rem 0 0.8rem 2rem;
}

.blood-availability-aside a {
  text-decoration: none !important;
  color: black !important;
}

.stats .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.blood_table_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.blood_table {
  width: 100%;
}

.blood_table th {
  padding: 0.2rem 1rem;
}

.blood_table td {
  padding: 0;
  padding: 0.2rem 1rem;
  font-weight: bold;
}

.blood_table,
.blood_table th,
.blood_table td {
  border: 1px solid black;
  border-collapse: separate;
  text-align: center;
}

.grid_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.add_city_form_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.add_city_form {
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-quantity-input {
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  outline: none;
}
