﻿

.inputdivwidth {
    width: 240px;
}

.inputselwidth {
    width: 229px;
}

.inputdivshortwidth {
    width: 115px;
}

}

.inputselshortwidth {
    width: 111px;
}

.inputdivlongtwidth {
    width: 487px;
}



.inputdiv {
    display: inline-block;
    vertical-align: top;
    margin: 2px;
    border: 2px solid;
    border-radius: 2px;
    border-color: darkgray;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.inputdivfocus {
    display: inline-block;
    border: 2px solid;
    border-radius: 2px;
    border-color: darkgray;
    background-color: #FFFFFF;
    border-radius: 5px;
    outline-style: solid;
    outline-color: #0d6efd;
}

/*da cancellare dopo passaggio*/
.inputdivlabel {
    font-size: .875rem;
    margin-left: .80rem;
    color: #6c757d;
}

/*da cancellare dopo passaggio*/
.labelcomponent {
    font-size: .875rem;
    margin-left: .80rem;
    color: #6c757d;
}

.inputdivnormal {
    width: 230px;
}

.etichetta {
    width: 140px;
    text-align: right;
    vertical-align: central;
}

.campoetichetta {
    width: 210px;
    background-color: azure;
}

.campotesto {
    width: 210px;
    background-color: aliceblue;
    border-width: 2px;
}

.campotestomultiline {
    width: 800px;
    background-color: aliceblue;
    border-width: 2px;
}

.titoloApplicazione {
    padding: 10px;
    background-color: black;
    color: white;
}


input[type="radio"] {
    accent-color: blue;
    appearance: none;
    border: 1px solid black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
}

    input[type="radio"]:checked::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 10px;
        height: 10px;
        background-color: blue;
        border-radius: 50%;
    }

    input[type="radio"]:disabled {
        border-color: lightgray;
        background-color: #f0f0f0;
        cursor: not-allowed;
    }

        input[type="radio"]:disabled:checked::before {
            background-color: gray;
        }


/* css per marcatempo */
.kiosk-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    background-color: lightgray;
}

    .kiosk-layout h1, .kiosk-layout h3, .kiosk-layout h4, .kiosk-layout h6 {
        margin: 0.5rem 0;
        font-weight: 500;
        color: #333;
    }

.btn-kiosk {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin: 1rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 8px;
    touch-action: manipulation;
    width: 80%;
    max-width: 400px;
}

    .btn-kiosk:active {
        background-color: #005a9e;
    }

@keyframes lampeggio {
    0% {
        background-color: #0078d4;
    }

    50% {
        background-color: #005a9e;
    }

    100% {
        background-color: #0078d4;
    }
}

.lampeggia {
    animation: lampeggio 1s infinite;
}



/* Creare un css separato per la stampa */
/* E' possibile creare formati stampa personalizzati con Paged.js, PrinceXML o WeasyPrint */
@media print {
    .no-print {
        display: none;
    }
}
/* Nasconde l'elemento sullo schermo */
.solo-stampa {
    display: none;
}

/* Mostra l'elemento solo quando si stampa */
/*esempio: <h1 class="solo-stampa">Domus coop</h1> non visibile a schermo ma visibile in stampa
*/
@media print {
    .solo-stampa {
        display: block;
    }
}
