
#layoutheader-div {
    
    position: absolute;
    top: 7px;
    left: 50%;
    

    max-width: 50%;
    align-items: center;
}

#layoutheader {
    display: block;
    position: absolute;
    top: 0px;
    transform: translateX(-50%); /* Adjust for the center */

    min-height: 40px;
    max-height: 40px;
    min-width: 300px;
    max-width: 600px;
    width: fit-content;
    box-sizing: border-box;
    
    padding: 5px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    
    background-color:  rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: large;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

#layoutheader:hover {
    opacity: 0.5;
}

.hiddenHeader {
    opacity: 0;
}

/* #plussign {
    display: none;
    position: absolute;
    opacity: 1;
    text-align: center;
    width: 50px;
} */

/* #layoutheader-div:hover #plussign {
    display: block;
} */

#layoutheader-div:hover .layoutheader-tooltip {
    display: block;
}

.layoutheader-tooltip {
    display: none;
    position: absolute;
    font-size: 12px;
    top: 50px;
    left: -50px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    width: 100px; /* Maximum width of the help message */
}

.layoutheader-tooltip:empty {
    opacity: 0;
}

@media (max-width:991px) {
    #layoutheader {
        display: none;
    }
}