/*  inputs */
select.form-control,
input[type="text"],
input[type]:not(input[type="submit"]),
input *,
textarea,
textarea.form-control,
button {
  background-color: var(--cinza-1);
  border: 3px solid var(--cinza-claro-3);
}

.navbar-light .navbar-nav .nav-link {
  color: black;
}

.form-control:focus {
  background-color: var(--cinza-1);
  border-color: var(--azul-1);
  box-shadow: none;
}

input[type="submit"]:focus {
  box-shadow: 0 0 0 3px var(--verde-claro-1);
}

input[type="submit"]:focus {
  box-shadow: 0 0 0 3px var(--azul-claro-1);
}

input[type="submit"] {
  font-size: 0.8rem;
}

login-submit.input[type="submit"]:focus {
  box-shadow: 0 0 0 3px var(--verde-claro-1);
}

.styled-checkbox {
  display: none;
}

.styled-checkbox + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}

.styled-checkbox + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #9f9f9f;
  background-color: #d9d8d8;
  transition: background-color 0.3s, border-color 0.3s;
}

.styled-checkbox:checked + label::before {
  border-color: var(--azul-1);
}

.styled-checkbox + label::after {
  content: "\2714"; /* Unicode checkmark character */
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 16px;
  font-weight: bold;
  color: var(--azul-1); /* Color of the checkmark */
  display: none;
}

.styled-checkbox:checked + label::after {
  display: block;
}

/* Grid */

@media screen and (max-width: 576px) {
  .mx-sm-content {
    max-width: max-content;
  }
}

@media screen and (min-width: 726px) {
  .mx-md-content {
    max-width: max-content;
  }
}

@media screen and (min-width: 992px) {
  .mx-lg-content {
    max-width: max-content;
  }
}

/* Breadcrumbs */
.breadcrumb {
  max-width: max-content;
  padding: 7px 25px;
  border-radius: 22px;
  background-color: var(--cinza-claro-3);
  font-size: 0.7rem;
  margin: 0;
}

/* Tables */
.table {
  margin: 0;
  border: 1px solid var(--cinza-claro-3);
}

.table > :not(:last-child) > :last-child > * {
  border-color: var(--cinza-claro-3);
}

.table tbody tr td,
.table thead tr th {
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
/* Navbar trigger */
.navbar-toggler > span {
  width: 30px;
  height: 3px;
  background-color: var(--cinza-4);
  display: block;
  margin: 4px 0;
  border-radius: 5px;
}

/* Badge */
.badge {
  max-width: max-content;
  width: 100%;
  font-size: 0.65rem;
  padding: 0.3rem 0.7rem;
}
