main div.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main section h2 {
  margin-top: 25px;
}
main section table {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #EEEEEE;
  margin-top: 10px;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
main section table thead {
  background-color: #EEEEEE;
  font-weight: bold;
}
main section table thead tr th {
  padding: 15px;
}
main section table tbody tr td {
  padding: 25px;
  border: 1px solid #EEEEEE;
}
main section table tbody tr td ul {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section table tbody tr td ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
main section table tbody tr td ul li a.button-delete {
  background-color: #c0392b;
}
main section table tbody tr td.details {
  text-align: center;
  padding: 15px;
  vertical-align: middle;
}
main section table tbody tr:hover {
  background-color: #fafafa;
  cursor: pointer;
}

section.popup {
  display: none;
  position: fixed;
  top: 250px;
  margin-left: calc(50% - 320px);
  width: 700px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 50px;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
}
section.popup h2 {
  text-align: center;
  margin-bottom: 40px;
}
section.popup div {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}
section.popup p {
  margin-top: 10px;
  text-align: center;
}
section.popup a.button-cancel {
  background-color: #c0392b;
}

@media (max-width: 700px) {
  main {
    width: 95%;
  }
  main section table thead tr th {
    padding: 5px;
    font-size: 0.8rem;
  }
  main section table tbody tr td {
    padding: 10px;
    font-size: 0.8rem;
  }
  main section table tbody tr td a.button {
    padding: 3px 6px;
  }
}

/*# sourceMappingURL=home.css.map */
