/*_____________*/
/*Partie Navbar*/
/*_____________*/

.sidebar {
  min-height: 100vh;
  margin-right: 20px;
  background-color: rgb(30, 53, 82);
}
.color_white {
  color: white;
}
.color_white:hover {
  color: rgb(91, 105, 126);
}
.sidebar-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Met la navbar au-dessus des autres éléments */
  padding: 48px 0 0; /* Espace pour le contenu */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
  width: 200px; /* Largeur fixe de la navbar */
}
.content-wrapper {
  margin-left: 200px; /* ajuster en fonction de la largeur de votre navbar */
}
/*---------------*/

/*Media Queries*/

/*--------------*/

@media (max-width: 800px) {
  .content-wrapper {
    margin-left: 0px;
  }
}

/*__________________*/
/*Partie Shelf Label*/
/*__________________*/

.bouton_add {
  background-color: rgb(30, 53, 82);
  color: white;
}
.bouton_add:hover {
  background-color: rgb(44, 78, 120);
  color: white;
}
.icon_edit {
  color: rgb(30, 53, 82);
}
.icon_edit:hover {
  color: rgb(44, 78, 120);
}

/*___________*/
/*Partie Home*/
/*___________*/

.card_body {
  background-color: rgb(30, 53, 82);
}
.icon_static {
  background-color: rgb(255, 255, 255);
  color: rgb(30, 53, 82);
  font-size: 4vh;
}

/*_________________*/
/* Status indicator */
/*_________________*/
.status {
  text-align: center;
  &.actif:before {
    background-color: #94E185;
    border-color: #78D965;
    box-shadow: 0px 0px 4px 1px #94E185;
  }
  
  &.inactif:before {
    background-color: #C9404D;
    border-color: #C42C3B;
    box-shadow: 0px 0px 4px 1px #C9404D;
  }

  &:before {
    content: ' ';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid #000;
    border-radius: 15px;
    text-align: center;
  }
}

/*_________________*/
/* Popup menu */
/*_________________*/

.container {
  /* position: absolute; */
  /* top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); */
  text-align: center;
}

.more-menu {
  width: 100px;
}

/* More Button / Dropdown Menu */

.more-btn,
.more-menu-btn {
  background: none;
  border: 0 none;
  line-height: normal;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  width: 100%;
  text-align: left;
  outline: none;
  cursor: pointer;
}


.more-menu {
  position: absolute;
  /* top: 100%; */
  z-index: 900;
  float: left;
  padding: 10px 0;
  margin-top: 9px;
  background-color: #fff;
  border: 1px solid #ccd8e0;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translate(0, 15px) scale(.95);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  pointer-events: none;
}

.more-menu-caret {
  position: absolute;
  top: -10px;
  left: 12px;
  width: 18px;
  height: 10px;
  float: left;
  overflow: hidden;
}

.more-menu-caret-outer,
.more-menu-caret-inner {
  position: absolute;
  display: inline-block;
  margin-left: -1px;
  font-size: 0;
  line-height: 1;
}

.more-menu-caret-outer {
  border-bottom: 10px solid #c1d0da;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: auto;
  left: 0;
  top: 0;
  width: auto;    
}

.more-menu-caret-inner {
  top: 1px;
  left: 1px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
}

.more-menu-items {
  margin: 0;
  list-style: none;
  padding: 0;
}

.more-menu-item {
  display: block;
}

.more-menu-btn {
  min-width: 100%;
  color: #000000;
  cursor: pointer;
  display: block;
  font-size: 13px;
  line-height: 18px;
  padding: 5px 20px;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.more-menu-item:hover {
  background-color: #489fe5;
}

.more-menu-item:hover .more-menu-btn {
  color: #fff;
}

.more-btn:hover .more-dot,
.show-more-menu .more-dot {
  background-color: #516471;
}

.show-more-menu .more-menu {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

.delete-btn {
  color: #C9404D;
}