﻿


body {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
}


.custom-navbar {
    background-color: white;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button-link {
    background: #fbecec; /* sfondo rosa chiaro coerente con il bordo */
    border: 2px solid #a53f48;
    cursor: pointer;
    color: #a53f48;
    text-decoration: double;
    transition: color 0.3s, text-decoration 0.3s, background 0.3s;
    padding: 20px 20px;
    border-radius: 8px;
    font-weight: bold;
}

    .button-link:hover {
        color: white;
        text-decoration: underline;
        background: #383f48;
        border-radius: 8px;
        padding: 20px 20px;
        font-weight: bold;
    }

.edit-box-style {
    width: 100px;
}
.no-image-text {
    font-size: 38px;
    color: red;
    background-color: lightgrey;
    padding: 20px;
    border-radius: 10px;
    height: 18rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-button {
    font-size: 32px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-intro {
    background: #bcc0c1;
    background: -moz-linear-gradient(top, #bcc0c1 0%, #e8e8ed 0%, #fcfcf4 98%, #fcfcf4 98%, #cacace 100%);
    background: -webkit-linear-gradient(top, #bcc0c1 0%, #e8e8ed 0%, #fcfcf4 98%, #fcfcf4 98%, #cacace 100%);
    background: linear-gradient(to bottom, #bcc0c1 0%, #e8e8ed 0%, #fcfcf4 98%, #fcfcf4 98%, #cacace 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bcc0c1', endColorstr='#cacace',GradientType=0 );
    margin-bottom: 40px;
    overflow: hidden;
    padding: 10px 0 10px 0;
    position: relative;
    text-align: left;
    background-color: #212529;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}
.formguardamulte {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 83%, rgba(252, 252, 252, 0) 84%, rgba(205, 204, 208, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 83%, rgba(252, 252, 252, 0) 84%, rgba(205, 204, 208, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 83%, rgba(252, 252, 252, 0) 84%, rgba(205, 204, 208, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#cdccd0',GradientType=1 );
}

.home-faq {
    background: #e8e8ed;
    background: -moz-linear-gradient(top, #e8e8ed 0%, #ffffff 5%);
    background: -webkit-linear-gradient(top, #e8e8ed 0%, #ffffff 5%);
    background: linear-gradient(to bottom, #e8e8ed 0%, #ffffff 25%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8ed', endColorstr='#ffffff',GradientType=0 );
    margin-bottom: 40px;
    overflow: hidden;
    padding: 0px 0 10px 0;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* Additional styles as needed */
}

.break-word {
    word-wrap: break-word; /* per spezzare le parole lunghe */
    word-break: break-all; /* in alternativa, per spezzare la parola in qualsiasi punto */
    white-space: normal; /* assicurati che il testo possa andare a capo */
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .tooltip-container .tooltip-text {
        visibility: hidden;
        text-align: left;
        background-color: #555;
        color: #fff;
        border-radius: 5px;
        padding: 10px;
        position: absolute;
        z-index: 1;
        top: 125%; /* Posiziona il tooltip sotto l'icona */
        left: 50%;
        transform: translateX(-60%); /* Centra il tooltip */
        width: 400px; /* Imposta una larghezza fissa, puoi modificarla come necessario */
        word-wrap: break-word; /* Gestisce il testo lungo */
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tooltip-container:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }


.tooltip-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
}

