@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*{
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
}

/* ************************* https://developer.mozilla.org/fr/docs/Web/HTML/Element/table */

table{
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

th{
    border-bottom: 1px solid rgb(160 160 160);
    padding: 15px;
    font-weight: bolder;
    font-size: larger;
    background-color: rgb(228 240 245);
    text-align: center;
}
  
td{
    border-bottom: 1px solid rgb(160 160 160);
    padding: 15px;
    text-align: center;
}

.actif{
    background-color: rgba(22, 139, 14, 0.35);
}
.inactif{
    background-color: rgba(207, 29, 29, 0.35);
}

/* ************************* */

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

.box-div th{
    padding: 10px 60px;
}

.btn{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.box{
    display: flex;
    flex-direction: row;
    width: 97.5%;
    margin: 12px 12px;
    background-color: aliceblue;
    border-radius: 15px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
}

.container a, .container .none{
    text-decoration: none;
    background-color: aquamarine;
    border-radius: 15px;
    font-weight: bold;
    padding: 8px 25px;
    color: black;
    cursor: pointer;
    border: none;
    transition: all .35s;
}

.container a:hover, .container .none:hover{
    scale: 1.1;
}

.nav{
    position: fixed;
    display: flex;
    flex-direction: row;
    bottom: 65px;
    right: 50px;
    width: auto;
    background-color: aliceblue;
    border-radius: 15px;
    padding: 15px 20px;
    filter: drop-shadow(2px 0 2px gray);
}

.close-btn{
    background-color: rgb(87, 228, 181);
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    padding: 8px 15px;
    width: 155px;
    color: black;
    cursor: pointer;
    border: none;
    transition: all .35s;
}

.close-btn:hover{
    scale: 1.1;
}

.nav a{
    margin: 0px 4px;
}