/* hide spin buttons */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}


.bg-purple {
    background-color: #232594;
    accent-color: #4850e3;
}

.loginlogo {
    width: 200px;
    margin-bottom: 30px;
}

.navbar {
    border-bottom: 6px solid #485de3;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 2px 0px 2px 0px;
    font-size: 18px;
    line-height: 20px;
}

.navbar-brand > img {
    height: 24px;
    margin-left: 5px;
    margin-top: 10px;
    margin-right: 10px;
}


#rememberme {
    float: left;
    margin-right: 10px;
    margin-left: 20px;
}


.footer {
    /*  position: absolute;
      right: 0;
      bottom: 0;
      left: 0; */
    padding: 1rem;
    color: #e6e4e4;
    background-color: #485de3;
    text-align: center;
}

a.footerlink, a.footerlink:visited {
    color: orange !important;
}

a.footerlink:hover, a.footerlink:visited:hover {
    color: White !important;
}

.privtit {
    margin-bottom: 10px;
    font-weight: bold;
}

.privtxt {
    margin-bottom: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

.error {
    background-color: lightyellow;
}

.vptable {
    border-collapse: collapse;
}

table.vptable > tbody > tr > th {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

.smtotrow {
    background-color: #bbeab0;
}

.table-classifica {
    table-layout: fixed;
    text-align: center;
}

.table-headers {
    text-align: center;
}

.zCl{
    cursor: pointer;
    color: darkred;
}

/* Stile finestra modale */
.modalw {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modalw-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    width: 80%;
}

.mdw-close-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

