* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: space-between;
}
.main {
  margin: 20px 30px;
}
.container {
  display: flex;
  min-height: 100vh;
  background: #1e1e2d;
}
/********* DEBUT SIDEBAR LEFT **************/
.left {
  width: 300px;
  height: 100vh !important;
  /* height: 100vh; */
  text-align: center;
  /* background: #1e1e2d; */
  /* background: red; */
}
.left .titre {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a27;
}

.left .titre h1 {
  color: #fff;
  font-size: 25px;
}

.sildeMenu {
  margin-top: 30px;
  width: 190px;
  margin: auto;
}
.sildeMenu .Dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sildeMenu .Dashboard h3 {
  color: #9798ab;
}

/********* FIN SIDEBAR LEFT **************/

/********* DEBUT TABLE **************/

table {
  width: 100%;
  display: flex;
  justify-content: center;
  align-self: auto;
  border-collapse: collapse;
}
tbody {
  width: 100%;
}

tr,
th,
td {
  width: 200px;
  height: 20px;
  padding: 5px;
}
tr,
td,
th {
  border-collapse: collapse;
  padding: 5px 5px;
  border: 1px solid #b5b5c3;
}

img {
  max-height: 70px;
  width: fit-content;
  float: right;
}
video {
  width: 70px;
  height: 70px;
  float: right;
}

table i {
  padding: 3px;
  font-size: 20px;
  color: #b5b5c3;
  float: right;
  margin: 10px;
}
/********* FIN TABLE **************/

form {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
input {
  padding: 10px 5px;
  margin: 10px 0px;
}

textarea {
  margin: 10px 0px;
  padding: 5px;
}

/********* DEBUT FOOTER **************/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  color: #9195a7;
  background: #fff;
  align-self: self-end;
  margin-top: 80px;
}
footer ul {
  display: flex;
  padding: 15px;
}
footer ul li {
  margin: 10px;
}

/********* FIN FOOTER **************/

/********** DEBUT RESPONSIVE **********/
@media screen and (max-width: 768px) {
  .right {
    width: 100%;
  }

  .left {
    display: none; /* Cache la sidebar pour les taablettes */
  }

  .navigation_liens .text p {
    width: 100%;
    font-size: 12px;
    padding: 10px; /* Réduit la taille tu texte pour les tablettes */
  }

  .group_table {
    padding: 10px;
  }

  .group_table table {
    width: 100%;
    min-width: 600px; /* Réduit la taille minimale de la table pour les tablettes */
  }
}

@media screen and (max-width: 576px) {
  .right {
    width: 100%;
  }

  .navbar_title {
    font-size: 18px;
    padding: 0px 15px; /* Réduit la taille tu texte */
    color: gray;
  }

  .navbar_right .h2 {
    font-size: 15px; /* Réduit la taille tu texte */
  }

  .navbar_right .a {
    width: 35px;
    height: 35px;
  }

  .navigation_liens .icons i {
    font-size: 18px;
  } /* Réduit la taille de l'icons*/

  .navigation_liens .text p {
    width: 100%;
    font-size: 12px;
  } /* Réduit la taille tu texte */

  .group_table {
    overflow-x: auto;
    overflow-y: auto; /* Active le scroll horizontal sur mobile */
  }

  .group_table table {
    width: 100%;
    min-width: 500px; /* Taille minimale adaptée aux smartphones */
  }

  table th,
  td {
    padding: 10px; /* Réduction de l'espace entre les cellules pour les petits écrans */
    font-size: 12px; /* Taille de texte réduite */
  }

  /* Ajustement des icônes d'actions pour éviter qu'elles ne prennent trop d'espace */
  table .actions i {
    padding: 2px;
  }
}

/********** FIN RESPONSIVE **********/
