/* CSS utilisé sur toutes les pages du projet dans le dossier /pages */

#exitbar {
    position: fixed;
    top: 0;
    left:0;
    width: 100vw;
    z-index: 9999;

    background:
        radial-gradient(ellipse at top left, #3d88d8, transparent),
        radial-gradient(ellipse at bottom right, #78b9ff, transparent);
    height: 35px
}

.window-buttons {
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
}

.buttons {
    border-top: 0px;
    box-shadow: 0px 0px 1px;
    border: solid 0.05rem #5f5f5fda;
    border-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.window-buttons > .buttons span {
    padding: 1px 10px 1px 10px;
    color: white;
    background: linear-gradient(#ffffff57 60%, #43525a85);

    text-align: center;
}

.window-buttons > .buttons span > i {
    text-shadow: 0px 0px 10px black;
}

.window-content {
    padding: 2px 10px 5px 10px;
    color: white
}

a:hover {
    background-color: inherit;
    color: inherit;
    padding: inherit;
    cursor: initial
}

#close:hover {
    background: linear-gradient(#ff111186 60%, #43525a85);
}

#bottombar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 9999; /* pour que rien se superpose bizarrement par dessus */

    background:
        radial-gradient(ellipse at top left, #3d88d8, transparent),
        radial-gradient(ellipse at bottom right, #78b9ff, transparent);
    border: solid 0.1rem #aeaeae88;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 5px #000;
}

#bottombar img {
    height: 40px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
    margin: 5px 12px;
    padding: 0px 7px
}

#bottombar > div.active {
    background:
        radial-gradient(ellipse at top left, #fffffffa, transparent),
        radial-gradient(ellipse at bottom, #ffffff31, transparent);
    padding: 0px 7px;
    border: solid 1px #1d1d1d88;
    border-radius: 5px
}
#bottombar .active img {
    margin: 5px;
    padding: 0px 3px;
}