body {
    width:100%;
    margin:0px;
}

.menu {
    width:95vw;
    padding:10px 50px 10px 50px;

    position:fixed;
    top:0px;
    
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;

    /*border:2px solid black;*/
    /*background-color: lightblue;*/
    background:linear-gradient(145deg, #00ABBF, #00DBF9)
}

.menuTitle {
    font-weight:bold;
    font-size:1.5em;
    color:white;
}
.menuStat {
    color:white;
    font-size:1.3em;
    font-weight:bold;
    cursor:'pointer',
}
.menuPassword {
    height:20px;
    border-radius:5px;
}

.stat .infoBulle {
    display:none;
    position:absolute;
    padding:'10px';
    border-radius:'5px';
    background:#7B68EE;
    text-align:center;
}
.stat:hover .infoBulle {
    display:block;
}




.resultLegend {
    margin:100px 0px 0px 20px;
    color:#00ABBF
}


.resultTable {
    border:'2px solid green';
    border-spacing:10px;
    margin-top:100px;
    margin-left:20px;
    margin-bottom:200px; /*pour pouvoir atteindre les boutons des dernières lignes, qu'elles ne soient pas derrière le compteur*/
}

.resultLine {
    margin:100px;
    border-bottom:2px solid;
    transition:0.2s;
}
.resultLine:hover{
    background:rgba(0,170,190,0.1);
}


.resultCell {
    padding:5px;
    text-align:left;
}

.resultText {
    text-decoration:none;
    color:inherit;
}







.counter {
    position:fixed;
    bottom:0px;
    right:5vw;
    
    height:80px;
    width:400px;
    border:2px solid rgba(0,170,190);
    border-bottom:none;
    border-radius:10px 10px 0px 0px;
    background:white;

    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-around;


}

.counterBloc {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.counterName {
    font-weight:bold;
}

.counterNumber {
    font-size:2em;
}

.counterMessage {
    width:280px;
    top:-50px;
    position:absolute;
    
    padding:10px;
    border-radius:10px;
    text-align:center;

}