html, body {
  height: 100%;
  margin: 0;
}

.main-container {
  height: 100%;
}

main {
  flex: 1;
}

header img {
  max-width: 100%;
  height: 50px;
  padding: 5px;
}

footer img {
  height: auto;
  width: 100%;
  max-width: 700px;
}

.box {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) !important;
  background-color: #f8f9f9 !important;
  background-image: url('../images/dots-background.png') !important;
  background-position: top left !important;
  transition: all 100ms ease-out 0s;
}
.highlighted-row {
  background-color: #e9fce4; /* Colore rosa chiaro */
  transition: background-color 0.3s ease; /* Effetto transizione */
}
.card-title {
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333;
}

/* Select Options */

select option {
  color: #333;
  padding: 8px;
  font-size: 16px;
  cursor: pointer;
}

.form-select:focus {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
}

select option:checked,
.form-select:focus option:checked {
  color: #fff !important;
  background-color: #2a93df !important;
}

select option:hover {
  color: #fff;
  background-color: #2a93df;
}
