.helperGantt td.highlight {
    background-color: rgba(255, 255, 0, 0.5); /* colore evidenziato */
    transition: background 0.2s;
}
.helperGantt .monthSticky{
    position: sticky;
    left: 0;
    width: fit-content;
    background: var(--bs-body-bg); /* needed to cover underlying table cells */
}
.helperGantt td.celle_giorni,
.helperGantt td.celle_giorni * {
    user-select: none!important;
    -webkit-user-select: none!important; /* Safari */
    -ms-user-select: none!important;     /* IE 10+ */
}
.helperGantt .celle_giorni{
    min-width: 70px;
    max-width: 70px;
    text-align: center;
}
.helperGantt tr, .rowLabelCell{
    border-top: 1px solid var(--bs-dark);
    border-bottom: 1px solid var(--bs-dark);
    border-left: 1px solid var(--bs-dark);
}
.helperGantt tr.borderedTR td{
    border: 1px solid var(--bs-dark);
    height: 25px;
}
.helperGantt thead{
    position: sticky;
    top: 0;
    background: var(--bs-body-bg); /* needed to cover underlying table cells */
    z-index: 9999;
}
.helperGantt td{
    padding:3px;
    height: 70px;
}
.helperGantt .shadow_col{
    background-color: var(--bs-gray-100) !important;
}
.helperGantt .we1_col{
    background-color: var(--bs-gray-300);
}
.helperGantt .we2_col{
    background-color: var(--bs-gray-300);
}
.helperGantt .shadow_col_secondary{
    background-color: var(--secondary-gray-200) !important;
}
.helperGantt .we1_col_secondary{
    background-color: var(--secondary-gray-400);
}
.helperGantt .we2_col_secondary{
    background-color: var(--secondary-gray-400);
}



.helperGantt .shadow_row{
    box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 5%)!important;
}

.custom-tooltip {
    position: absolute;
    background: white;
    color: var(--bs-black);
    border: solid 1px var(--bs-info);
    padding: 8px 12px;
    border-radius: 6px;
    /*max-width: 200px;*/
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 99999999;
    display: none;
    transition: opacity 0.2s;
}


#AIOperationUi_chat .ai-message{
    margin-top: .5rem!important;
    padding: .5rem!important;
    border-radius: 7px;
    width: 100%;
}

#AIOperationUi_chat .user-message{
    margin-top: .5rem!important;
    width: 75%;
    padding: .5rem!important;
    border-radius: 7px;
    background-color: var(--bs-gray-600);
    color: var(--bs-light);
}
@media screen and (min-width: 1300px){
    #AIOperationUi_chat .user-message{
        width: 51%;
    }
}


.dropzoneAi{
    height: 200px;
    border: dashed 3px var(--bs-gray-500);
    border-radius: 7px;
}

.dropzoneAi.dragging{
    background-color: rgba(var(--bs-info-rgb), 0.4) !important;
}

.dropzoneAi.uploadedFile{
    background-color: rgba(var(--bs-success-rgb), 0.4) !important;
    border: 2px sold var(--bs-success);
}

.dropzoneAi.cancelled{
    background-color: rgba(var(--bs-secondary-rgb), 0.2) !important;
    border: 2px sold var(--bs-secondary);
}

#currentUploadProgress{
    height: 10px;
    width: 50vw;
    border-radius: 7px;
    -webkit-box-shadow: inset 0px 0px 34px -26px #000000;
    box-shadow: inset 0px 0px 34px -26px #000000;
    overflow: hidden;
}
#currentUploadProgress .progress-bar{
    width: 0;
    height: 100%;
    transition: width 0.2s ease;
    background-color: var(--bs-primary);
}

.side_action_menu{
    text-decoration: none;
    font-size: .75em;
    cursor: pointer;
    margin-bottom: .5rem;
}
.side_action_menu i{
    font-size: 1.4em;
    position: relative;
    bottom:2px;
}
.sa_menu{
    position: relative;
    width: max-content;
    z-index: 2;
    border: 1px solid var(--bs-gray-500);
    background-color: var(--bs-body-bg);
    box-shadow: 0px 0px 20px -12px #000000;
    transform: translateX(-100%);
    left: 10px;
}
