/* Style the body and outer container */
.page-item.disabled p {
    padding: 0.375rem 0.75rem;
}

.ms-selection .ms-list .ms-selected span {
    color: #fff;
    font-weight: 500;
}
.ms-selection .ms-list .ms-selected {
    background: cornflowerblue;
    color: #fff;
}
.modal {
  display: none; /* Nasconde la modal di default */
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); /* Sfondo semitrasparente */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 600px; /* Larghezza massima della modal */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.nav-tabs .nav-link {
    font-size: 18px;
    font-weight: 700;
    background: #ebebeb;
    border-radius: 15px;
    margin-right: 5px;
	margin-bottom: 10px;
    padding: 3px 10px;
}
a.homelink {
    font-size: 24px;
    text-decoration: none;
    font-weight: 500;
    font-family: sans-serif;
    text-align: center;
    margin: auto;
    display: block;
}
.ms-container .ms-list{
	height:80px !important;
	
    border-color: #000 !important;
}
.formcolor{
	     background-color: beige;
    border-radius: 20px 20px 0px 0px;
    padding: 10px;
    margin-top: 10px;
}
h1 {
    padding-bottom: 50px;
    padding-top: 30px;
}
.alternata{background-color:beige}

/* Status and error boxes */

.statusMessage, .errorMessage {
  font-size: .8em;
  padding: .5em;
  margin: 2em 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}

.statusMessage {
  background-color: #2b2;
  border: 1px solid #080;
  color: #fff;
}

.errorMessage {
  background-color: #f22;
  border: 1px solid #800;
  color: #fff;
}

