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

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
	grid-template-columns: 1fr;
	grid-template-areas: "header" "body" "footer";

}

.page-header{grid-area: header;}
.page-body{grid-area: body;}
.page-footer{grid-area: footer;}


/* tag */
a:active, a:hover, a:link, a:visited{text-decoration: none;}



/* rimappatura classi bootstrap*/
.nav-link.active{color: #007091 !important}
.dropdown-menu[data-bs-popper]{right: 0 !important; left:unset}

/**********/
/* classi */
/**********/

.top{background-color: #5bc2f4}
.cursore{cursor: pointer}
.bread{border-bottom:1px solid #5bc2f4;background-color: #ffffff;padding:0.4rem}

/*formattazione testo*/
.grassetto{font-weight: bold}
.giustificato {TEXT-ALIGN: justify;}
.indent15{TEXT-INDENT: 15px;}

/* colore testo*/
.bianco{color: #ffffff}
.bluscuro{color: #001842}

