﻿/* DEFAULTS
----------------------------------------------------------*/
/* Stili di base per i bottoni */
.tabs {
    display: flex; /* Usare flexbox per allineare i bottoni orizzontalmente */
    justify-content: space-between; /* Spaziatura tra i bottoni */
    background-color: #f1f1f1;
    border-bottom: 2px solid #ddd;
    width:500px
}

.tab-button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, border-bottom 0.3s;
    border-radius: 5px 5px 0 0; /* Crea l'effetto linguetta arrotondata */
    margin: 0; /* Rimuovi il margine per evitare spazi extra */
    width: 160px; /* Larghezza bottone */
    flex-grow: 1; /* Fai in modo che i bottoni occupino lo stesso spazio */
    text-align: center; /* Centra il testo nei bottoni */
}

    /* Cambia colore quando il bottone è in hover */
    .tab-button:hover {
        background-color: #ddd;
    }

    /* Quando un tab è attivo */
    .tab-button.active {
        background-color: #ccc;
        border-bottom: none;
        font-weight: bold;
    }

/* Contenuto dei tab */
.tab-content {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

    .tab-content.active {
        display: block;
    }
    /*---------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 0px;
}

h1 {
    font-size: 1.6em;
    font-weight: 400;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

.hide {
    display: none;
}

.page
{
    width: 960px;
    background-color: #fff;
    margin: 20px auto 0px auto;
    border: 1px solid #496077;
}

.header
{
    position: relative;
    margin: 0px;
    padding: 0px;
    background: #4b6c9e;
    width: 100%;
}

.header h1
{
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: #f9f9f9;
    border: none;
    line-height: 2em;
    font-size: 2em;
}

.main
{
    padding: 0px 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
}

.leftCol
{
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.aligncenter {
    text-align: center;
}

.alignright {
    text-align: right;
}
.footer
{
    color: #4e5766;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}


input.textEntry 
{
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry 
{
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo
{
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear
{
    clear: both;
}

.title
{
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.bold
{
    font-weight: bold;
}

input.textNumericEntry {
    border: 1px solid #ccc;
    text-align: right;
}
.boxnotetecnico
{
    position: absolute;
    top: 20%;
    left: 19%;
    width: 63%;
    height: 435px;
    border-radius: 5px;
}
.boxconferma {
    position: absolute;
    top: 24%;
    left: 35%;
    width: 30%;
    height: 200px;
    border-radius: 5px;
}
.Panelprot {
    pointer-events: none; /* blocca tutti gli eventi del mouse */
    user-select: none; /* evita la selezione del testo */
}