* {font-family:helvetica;}
body {background-color: #b6c3bf;font-size:16px;}
h2 {text-align:center; text-transform:uppercase; background-color: #879f99;}
h3 {text-align:center; text-transform:uppercase; color: #3e4b4f;background-color: #859390;}

table {width:100%; max-width:500px;margin:0 auto;border-collapse:collapse;font-size:12px;background-color: #eeffee;}
.dati {text-align: center}

p{
  padding: 20px;
}

tr{
  text-align: center;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1); /* Standard Property */
  -webkit-transition: all 1.15s ease-out;
  -moz-transition: all 1.15s ease-out;
  -o-transition: all 1.15s ease-out;
  transition: all 1.15s ease-out;
}

tr:nth-child(odd){
  background-color:rgba(35,35,15,.1);
}

tr:hover{
  background-color:rgba(120,120,0,.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2); /* Standard Property */
}

td{padding:1px 4px;}

td:nth-child(1){color:rgba(25,25,25,.2);}

/*
di seguito il codice per i tooltip (commenti a comparsa) dei button
*/
 .tooltip {
  position: relative;
  display: inline-block;
 
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e55;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 2px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.5s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 0.8;
}
