* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 70px;
    object-fit: cover;
    margin-bottom:10px;
}

.fondPresence {
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: 110%;
    height: 100%;
    width: 100%;
    position: fixed;
}

.logoFMB {
    position: absolute;
    width: 150px;
    height: 220px;
    right: 20px;        
    bottom: 20px;       
    top: auto;          
    left: auto;        
    background-image: url(../img/logoFMB.png);
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 2;
}

.bandeau {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    font-size: 25px;
    background-color: transparent;  /* ← retire le fond blanc */
    color: white;
    text-shadow: 1px 1px 3px black;  /* ← lisible sur le fond */
}

.piedDePage {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    bottom: 20px;     
    right: 200px;       
    top: auto;
    left: auto;
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.5);
}
.signature {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 52px;
    text-align: center;
    color: #000000;
    flex: none;
    order: 0;
    margin: 0px 10px;
}

.logoNuprod {
    position: static;
    width: 99px;
    height: 40px;

    background-image: url(../img/logoNuprodSeul.png);
    background-size: 100%;

    /* Inside auto layout */

    flex: none;
    order: 1;
    margin: 5px;
}

.vignette {
    display: flex;
    flex-direction: column;      /* ← disposition verticale : avatar puis nom */
    align-items: center;
    justify-content: flex-start;
    position: static;
    width: 135px;
    height: 190px;               /* ← plus haute pour accueillir l'avatar */
    background: #C4C4C4;
    opacity: 0.9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    flex: none;
    flex-grow: 0;
    margin: 20px 20px;
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 0px 8px 0px;
    text-align: center;
    color: #000000;
    border: none;
}


.containerPresence {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;  
    max-width: 100%;
    margin-top: 20px;
    margin-left: 70px;
    position: absolute;
    z-index: 1;
}

.signal{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: block;
    margin-left:75%;
}