html,
body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}
main {
    width: 100%;
    margin: 0.5em;
    overflow: scroll;
    height: 100%;
}
img {
    object-fit: cover;
}
.pdf {
    width: 100px;
    height: 130px;
}
.material-symbols-outlined {
    color: inherit;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.highlighted {
    background-color: var(--bs-warning) !important;
}

.navbaraccueil {
    height: 100%;

    .gestcomLogoIMG {
        width: 218px;
        height: 53px;
        padding-left: 20px;
    }
    .nav-link {
        display: flex;
        gap: 8px;
    }

    svg {
        fill: var(--bs-nav-pills-link-active-color);
    }

    .dropdown-menu {
        transition: all 500ms;
        overflow: hidden;
        display: block;
        position: absolute;
        left: -1px;
        bottom: 65px;
        width: 100%;
        height: 0px;

        padding: 0px;
        border: none;
    }
    .dropdown-menu.show {
        height: calc(32.6px * 3);
        padding: 8px;
    }
}

.pageCentered {
    width: fit-content;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;

    .imageContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        > img {
            width: 360px;
            height: 100px;
        }
    }
}

.crightclick {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    margin: 0.3em;
    background-color: var(--bs-dark-bg-subtle);
    padding: 0.2em;
    border-radius: 0.5em;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;

    * {
        margin: 0;
        padding: 0;
    }
}
.crightclick.show {
    opacity: 1;
}
