/* V2 style.css */
/* .sidebar {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #343232;
  color: #fff;
  width: 25%;
  min-height: 100vh;
  padding: 5px;
  float: left;
  height: 100%;
  overflow: auto;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5%;
  /* padding: 10px; *
  color: #fff;
  text-align: center;
  text-decoration-color: #fff;
  overflow-y: auto;
}
.menu-head {
  margin-bottom: 30%;
  align-items: center;
  margin-top: 30px;
}

.MenuItem:hover {
  background-color: #c81517;
  transition: background-color 0.3s ease;
}

.menucontainer img {
  margin-right: 30px;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-color: #343232;
}

.menu-item {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.menu-item a {
  display: block;
  text-decoration: none;
  color: #fff;
  list-style-type: none;
}

.submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
  max-height: 200px;
  overflow-x: auto;
}
.submenu:hover {
  background-color: #c81517;
  transition: background-color 0.3s ease;
}
.submenu li {
  padding: 5px;
  color: #fff; /*couleur des sous menu*
  list-style-type: none;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #343232;
  list-style-type: none;
}

@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {
    float: left;
  }
  div.content {
    margin-left: 0;
  }
}

@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
} */

.main-footer {
  background-color: #d6d6d6;
  position: sticky;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}

.main-footer,
.lepied {
  padding-top: 10px;
}
.options {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  width: 150px;
  padding: 10px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
}

.options li {
  list-style-type: none;
  padding: 5px;
  cursor: pointer;
}

.options li:hover {
  background-color: #ddd;
}
