/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-repeat: no-repeat;
    color: whitesmoke;
}

    html.not-authenticated, body.not-authenticated {
        background-image: url('/img/officers.jpg');
        background-size: auto 80%;
        background-position: center center;
        background-color: black;
    }

    html.authenticated, body.authenticated {
        background-color: rgb(13, 13, 13);
    }

.inner {
    width: 60%;
    margin: auto;
}

.header-bar {
    /*    font-family: Roboto;*/
    font-family: 'Space Grotesk', sans-serif;
    color: cornsilk;
    background: linear-gradient(45deg, #010101, #101011, #010101);
}

h1 {
    color: cornsilk;
}

.officers {
    /*    width: 200px;
    height: 200px;*/
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-dark.not-authenticated {
    padding: 5px 0;
    background: linear-gradient(45deg, #010101, #101011, #010101);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center; /* Centrage vertical du contenu */
}

.footer-dark.authenticated {
    visibility: hidden;
}

.footer-dark .copyright {
    text-align: center;
    padding-top: 5px;
    color: #cac381;
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.connexion-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    margin-top: 30vh;
    text-align: center;
    color: blanchedalmond;
    /*background: linear-gradient(45deg, #010101, #000000, #010101);*/
}

.connexion-form {
    width: 30vw;
    padding: 30px;
    background-color: rgb(15, 15, 15);
    border-radius: 18px;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
}

.modal-error {
    background-color: #ff0000;
    border-radius: 18px;
}

/* Ajoutez ces styles dans votre feuille de style (CSS) */

.table-dark {
    background-color: #343a40;
    color: #ffffff;
}

    .table-dark th, .table-dark td {
        border-color: #454d55;
    }

.text-green {
    color: teal;
}

.text-yellow {
    color: yellow;
}