#admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    z-index: 1000;
    box-shadow: none;
    cursor: default;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#admin-link:hover {
    background-color: transparent;
    transform: scale(1);
}

#pdf-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #c0392b; /* Rouge PDF */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#pdf-link:hover {

    background-color: #e74c3c; /* Rouge plus clair */

    transform: scale(1.1);

}



/* --- Notification PDF --- */

#pdf-notification {

    position: fixed;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    background-color: #0064c7; /* Dark Blue */

    color: white;

    padding: 15px 30px;

    border-radius: 5px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    z-index: 2000;

    font-size: 1.1em;

}
