/* Carica il font 'Inter' da Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Impostazioni Globali del Font */
body, button, input, textarea, .btn, h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* Stili del Footer */

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

.footer-container {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px !important; /* Aggiunto !important per il padding */
  background-color: white;
  box-shadow: 0px -4px 18px 0px rgba(65, 6, 255, 0.25);
  border-radius: 15px 15px 0 0;
  z-index: 1000;
  font-size: 0.8em;
  font-family: 'Inter', sans-serif;
  color: #333333;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.footer-container .powered-by {
  flex-shrink: 0;
  margin-right: 5px; /* Manteniamo il margine a destra */
  margin-bottom: 0; /* Impostiamo il margine inferiore a zero */
}

.footer-container .footer-logo {
  width: 80px;
  max-height: 22px; /* Impostiamo l'altezza massima del logo */
  height: auto; /* Lasciamo che l'altezza si adatti proporzionalmente alla larghezza */
  margin-right: 20px; /* Aggiungiamo un margine destro per separare il logo */
  margin-left: 0px; /* Aggiungiamo un margine sinistro per separare il logo */
  flex-shrink: 0;
  margin-bottom: 4px;
  vertical-align: middle; /* Allineamento verticale al centro */
  opacity: 0.7; /* Opacità al 70% */
}

.footer-container .footer-left .copyright {
  flex-shrink: 0;
  color: #333333;
}

.footer-container .dot {
  padding: 0 5px;
  font-size: 1.5em;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-container .footer-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  color: #4106FF;
}

.footer-container .footer-right a {
  color: #4106FF;
  /*text-decoration: none;*/
  margin-left: 5px;
  margin-right: 5px;
  flex-shrink: 0;
}

.footer-container .footer-right a:last-child {
  margin-right: 0;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 8px !important; /* Aggiunto !important per il padding */
  }

  .footer-left, .footer-right {
    margin: 0px 0;
    justify-content: center;
  }

  .footer-logo {
    max-height: 20px;
  }

  .footer-container .dot {
    font-size: 1em;
    padding: 0 2px;
  }
  
  .footer-logo {
    margin-bottom: 6px;
  }
}
