html {
  font-family: "Open Sans", sans-serif;
}

.column-ctx {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row-ctx {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gap-and-space-around {
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 20px;
}

.centered-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.centered-container--narrow {
  max-width: 400px;
}

.actions-centered {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.actions-spaced {
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

.table-padded th,
.table-padded td {
  padding: 10px 20px;
}

.mb-20 {
  margin-bottom: 20px;
}
