:root>* {
  --table-color: white;
  --main-color: white(191, 211, 216) --secundary-color;

}

[data-md-color-scheme="maxtel_l"] {
  --md-primary-fg-color: #060472;
  --md-typeset-a-color: rgb(39, 130, 233);
  --md-default-bg-color: #f7f7f7;
  --md-typeset-table-color: rgba(212, 209, 209, 0.521);

}

[data-md-color-scheme="slate"] {
  --md-hue: 210;
  --md-primary-fg-color: #060472;
  --md-typeset-a-color: rgb(39, 130, 233);
  --table-color: rgba(36, 38, 43, 0.705);
  --main-color: rgb(59, 84, 90);

}

p {
  text-align: justify;
  text-justify: inter-world;
}

.alert {
  color: rgb(196, 84, 84);
  font-weight: bold;
  background-color: var(--table-color);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.205);
  padding: 2%;
}

.display-evenly {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly
}

tr,
.bg-default {
  background-color: var(--table-color);
}

.display-evenly td {
  text-align: center;
  vertical-align: middle;
}

.column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-box {
  align-items: center;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.205);
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

img {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.192);
}

th {
  text-align: center;
}

td,
th {
  border: 1px solid var(--md-default-bg-color);
}

.bg {
  background-color: rgba(0, 0, 0, 0.089);
}

.image-producer {
  border: none;
}

@media (max-width: 600px) {
  .display-evenly {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 15%;
  }
}

/* nova classe para 3 ou mais tabelas */
.display-evenly-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  /* quebra se faltar espaço */
}

.display-evenly-3>div {
  flex: 1 1 0;
  max-width: 33.333%;
}

.display-evenly-3 table {
  width: 100%;
  border-collapse: collapse;
}

.display-evenly-3 td,
.display-evenly-3 th {
  text-align: center;
  vertical-align: middle;
  padding: 4px 8px;
}

/* responsivo */
@media (max-width: 900px) {
  .display-evenly-3>div {
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .display-evenly-3 {
    flex-direction: column;
    margin-inline: 15%;
  }

  .display-evenly-3>div {
    max-width: 100%;
  }
}