.module-button {
      display: inline-block;
      padding: 5px 5px 5px 5px; /* padding top, right, bottom, left */
      font-size: 18px;   /* Dimensione del testo */
      border-radius: 13px; /* Bordo arrotondato */
      background-color: #40aad4; /* Colore di sfondo del bottone */
      color: #ffffff; /* Colore del testo */
      text-decoration: bold;
      margin-bottom: 1px; /* Spazio sotto il bottone */
 	  /* min-width: 100px;  Larghezza minima del bottone in pixel */
      width: 100%;
    }
 .module-button:hover {
      background-color: #3058e8;
      color: #ffffff; /* Colore del testo */
    }

.blink {
    animation: blinker 1s linear infinite;
    color: #ff4200;
    font-weight: bold;
  }

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

.verticalm {
	vertical-align: middle;
  }
.verticalt {
	vertical-align: top;
  }
.verticalb {
	vertical-align: bottom;
  }