.grid-container {
  display: grid;
  grid-template-columns: 80px 200px 300px 300px 300px;
  grid-template-rows: 45px 190px;
  grid-template-areas:
    ""
    ""
    "";
}

/* * {
  border: solid red 1px;
  box-sizing: border-box;
} */

* {
  font-family: 'Satoshi-Variable';
}

.bg {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  writing-mode: sideways-lr;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(270deg, #2c2c2c -50.94%, #4e4e4e 100%);
  color: white;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  font-size: 12pt;
}

.empty {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 2;
}

.title {
  display: flexbox;
}

.menu {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly; /* distribuisce equamente gli elementi */
}

.produttività {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly; /* distribuisce equamente gli elementi */
  align-items: center;
}

.risparmio {
  grid-row: 2 / 3;
  grid-column: 4 / 5;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly; /* distribuisce equamente gli elementi */
  z-index: 1;
  align-items: center;
}

.protezione {
  grid-row: 2 / 3;
  grid-column: 5 / 6;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly; /* distribuisce equamente gli elementi */
  align-items: center;
}

.Prod {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  background-color: #699a08;
  border-bottom: solid 0.5px black;
  
}

.Risp {
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  background-color: #ffab0a;
  border-bottom: solid 0.5px black;
}

.Prot {
  grid-row: 1 / 2;
  grid-column: 5 / 6;
  background-color: #c70000;
  border-bottom: solid 0.5px black;
}

.header {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  border: solid 0.5px black;
}

.icon {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

.cell {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: start;
}

.title {
  display: flex;
  padding-left: 20px;
  justify-content: start;
  font-weight: 500;
  background: linear-gradient(270deg, #2c2c2c -50.94%, #4e4e4e 0%);
  color: white;
  border: solid 0.5px black;
}

.header {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-weight: 600;
  color: white;
}

.p {
  background-color: #699a08;
  color: white;
  border: solid 0.5px black;
  height: 30px;
  line-height: 40px;
}

.r {
  background-color: #ffab0a;
  color: white;
  border: solid 0.5px black;
  height: 30px;
  line-height: 40px;
}

.o {
  background-color: #c70000;
  color: white;
  border: solid 0.5px black;
  height: 30px;
  line-height: 40px;
}

#tabella a {
  color: white;
  text-decoration: none;
}

#tabella a:hover {
  cursor: pointer;
  opacity: 50%;
  text-decoration: underline;
}

.icona-risparmio::before {
  content: "\0024\0024"; /* Codice Unicode per il simbolo del dollaro */
  font-size: 1em; /* Regola la dimensione dell'icona */
  /* Altri stili per l'icona */
}

.icona-prod::before {
  content: "\2191"; /* Codice Unicode per la freccia verso l'alto */
  font-size: 0.9em;
  /* Altri stili */
}

/* Icona per la colonna "Protezione" (es. uno scudo) */
.icona-prot::before {
  content: "\2191"; /* Codice Unicode per l'icona dello scudo */
  font-size: 0.9em;
  /* Altri stili */
}
