body {
     background-color: #333333;
     background-image: url('bg.jpg');
     background-repeat:no-repeat;
     background-size: cover;
     margin: 100px auto;
     width: 900px;
     height: 100%;
     min-height: 1050px;
     font-family: 'Roboto', sans-serif;
     user-select: none;
     -webkit-user-drag: none;
}
img {
    -webkit-user-drag: none;
}
.table-container {
     padding: 10px;
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: flex-start;
     align-items: flex-start;
     position: relative;
}
.bouton-container {
    position: absolute;
    top: 20px;
    right: 100px;
}
.column-cell th,
.row-cell {
    border: 1px dashed #000;
    font-size: 18px;
    font-weight: 400;
}
.color-cell {
    background: #FFC107;
}
.black-cell {
    background: #000000;
}
table {
     font-size: 12px;
     background-color: rgb(255 255 255 / 70%);
}
td,
th {
     width: 24px;
     height: 24px;
     text-align : center;
     border: solid 1px #000;
     font-size: 20px;
     font-weight: 700;
     text-transform: uppercase;
}
hr {
    margin: 10px 0;
    border-top: 0;
    border-bottom: 1px solid #898989;
}
.header-container {
    position: relative;
    margin-bottom: -14px;
}
.header-container .img-title {
    width: 688px;
    height: 115px;
}
.header-container .img-logo {
    position: absolute;
    right: 28px;
    bottom: 0px;
}
.footer-container {
    padding: 20px 0;
    width: 50%;
    text-align: center;
}
.footer-container p {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-weight: 500;
    color: #fff;
}
.action-container {
    padding: 10px;
    width: 40%;
    background-color: rgb(255 255 255 / 70%);
}
.text-input {
    display: block;
    width: 100%;
    height: 25px;
    line-height: 25px;
    padding: 0 10px;
    border: 1px solid #000;
    margin-bottom: 5px;
    box-sizing: border-box;
    text-transform: uppercase;
    border-radius: 3px;
}
.text-input:hover {
    border-width: 2px;
}
.text-input[disabled]:hover {
    border-width: 1px;
}
.input-wrapper {
    margin-bottom: 15px;
}
.input-wrapper p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 3px;
}
.bouton-wrapper {
    margin: 0 0 10px 0;
}
.text-button {
    background: #000b23;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
}
.text-button[disabled] {
    background: #8b8b8b;
}
.text-button:hover {
    background: #000;
}
.text-button[disabled]:hover {
    background: #8b8b8b;
}
.action-button {
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #000;
    padding: 5px 10px;
    min-width: 125px;
    border-radius: 30px;
}
.action-button.active-button {
    color: #979797;
    border-color: #979797;
}
.action-button:before {
    font-family: 'Material Symbols Outlined';
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
    vertical-align: bottom;
    color: #000;
}
.text-button:before {
    font-family: 'Material Symbols Outlined';
    content: '\e5ca';
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
    vertical-align: bottom;
    color: #fff;
}
.action-button.active-button:before {
    color: #979797;
}
.action-button:not(.active-button):hover {
    color: #979797;
    border-color: #979797;
}
.action-button.horizontal-button {
    margin-right: 5px;
}
.img-copyright {
    position: absolute;
    bottom: 50px;
    right: 0;
}
.horizontal-button:before {
    content: '\e5cc';
}
.vertical-button:before {
    content: '\e5cf';
}
.hidden-input {
    display: none;
}
.highlighted {
    background: #dfe2e4;
}
.scroller {
    height: 360px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    margin-top: 50px;
}
.scroller::-webkit-scrollbar {
    width: 8px;
}
.scroller::-webkit-scrollbar-track {
    background-color: #f9f9f9;
}
.scroller::-webkit-scrollbar-thumb {
    background-color: #000000;
}
@media only screen and (max-width: 800px) {
    body {
         width: auto;
         height: auto;
    }
    .header-container .img-title {
        width: 100%;
        height: auto;
    }
    .header-container .img-logo {
        position: inherit;
    }
    .footer-container .img-copyright {
        position: inherit;
    }
    .action-container {
        width: 100%;
        padding: 15px;
        margin-top: 20px;
        box-sizing: border-box;
        background: white;
    }
    .table-container {
        display: block;
        margin: 5px;
    }
    td, th {
         width: 30px;
         height: 30px;
         font-size: 18px;
    }
    .column-cell th, .row-cell {
        font-size: 12px;
    }
    .action-button {
        min-width: 100px;
    }
    .footer-container {
        padding: 20px 5px;
    }
    .scroller::-webkit-scrollbar {
        width: 3px;
    }
}
