/* ------------------------------
   STYLE GLOBAL
--------------------------------*/
body {
    margin: 0;
    padding: 0;
    background-color: #006666;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
}

/*-------------------------------
    ARRONDI
--------------------------------*/
.round {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

/* ------------------------------
   CONTENEUR PRINCIPAL
--------------------------------*/
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* ------------------------------
   TABLEAU HEADER LOGO
--------------------------------*/
.header-table img {
    width: 90px;
    height: auto;
}

/* ------------------------------
   TITRES & TEXTES
--------------------------------*/
h1,
h2,
h3,
.title-large {
    font-size: 24px;
    text-align: center;
    color: #99FFCC;
}

.text-center {
    text-align: center;
}

/* ------------------------------
   TABLEAUX
--------------------------------*/
table {
    width: 90%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

td {
    padding: 8px;
}

/* tableau historique */
.table-history tr:nth-child(even) {
    background-color: #CCCCCC;
    color: #003333;
}

.table-history tr:nth-child(odd) {
    background-color: #99CC99;
    color: #003333;
}

.table-history th {
    background-color: #99CC99;
    color: #003333;
    font-weight: bold;
    padding: 10px;
}

/* ------------------------------
   BOUTON "Retour"
--------------------------------*/
button.back-btn {
    background-color: #009988;
    border: none;
    padding: 12px 26px;
    padding: 12px 26px;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
    color: #FFFFFF;
    text-align: center;
    width: 80%;
    max-width: 300px;
    display: block;
    margin: 20px auto;
    transition: 0.2s;
}

button.back-btn:hover {
    transform: scale(1.08);
}

/* --------------------------------
   VERSION MOBILE (MEDIA QUERIES)
----------------------------------*/
@media (max-width: 600px) {

    h1,
    h2,
    h3,
    .title-large {
        font-size: 20px;
    }

    td {
        font-size: 16px;
        padding: 6px;
    }

    .header-table img {
        width: 70px;
    }
}