main {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.example-wrapper{
   width: 75vw;
}

.pos-pills {
    bottom: -20px;
    right: 0;
}

.border-perso {
    border-radius: 0 0 0 1rem ;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.login-container {
    max-width: 400px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.login-subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}
.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #6441a5;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.btn:hover {
    background-color: #4b367c;
}
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.ml-auto {
    margin-left: auto;
}

.sidebar {
    width: 200px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #444, #222);
    padding: 15px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
.sidebar ul {
    list-style-type: none;
    padding: 0;
}
.sidebar ul li {
    margin: 15px 0;
}
.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.sidebar ul li a:hover {
    text-decoration: underline;
}

.pos-alert {
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.switch {
    width: 100px;
    height: 45px;
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.5);
    transition: all 0.4s cubic-bezier(0.99, 0.1, 0.1, 0.99);
    border-radius: 5px;
    box-shadow:
      inset 0px 0px 1px 0px rgba(0, 0, 0, 1),
      inset 90px 0px 50px -50px rgba(126, 4, 4, 0.56);
    border: 1px solid black;
  }
  
  .slider-btn {
    position: absolute;
    content: "";
    aspect-ratio: 6/4;
    border-radius: 3px;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: auto;
    background: linear-gradient(to bottom, #333333, #242323);
    border: 1px solid #2b2b2b;
    background-color: #333333;
    box-shadow:
      0px 10px 5px 1px rgba(0, 0, 0, 0.15),
      inset 10px 0px 10px -5px rgba(126, 4, 4, 0.1);
    transition: all 0.4s cubic-bezier(0.99, 0.1, 0.1, 0.99);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .texture {
    width: 2px;
    height: 70%;
    background-color: #202020ea;
    box-shadow:
      -0.7px -1.5px 1px 0px rgba(192, 192, 192, 0.3),
      0px 2px 3px rgb(0, 0, 0, 0.3);
    transition: 0.25s;
  }
  
  .light {
    width: 4px;
    height: 4px;
    border: 1px solid #222121;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.99, 0.1, 0.1, 0.99);
    background-color: rgb(230, 14, 14);
    box-shadow: 0px 0px 10px 1px rgb(241, 28, 28);
  }
  
  .switch input:checked + .slider {
    box-shadow:
      inset 0px 0px 1px 0px rgba(0, 0, 0, 1),
      inset -85px 0px 50px -50px rgba(1, 78, 4, 0.6);
  }
  
  .switch input:checked + .slider .slider-btn {
    transform: translateX(66%);
    box-shadow:
      0px 10px 5px 1px rgba(0, 0, 0, 0.15),
      inset -10px 0px 10px -5px rgba(1, 112, 4, 0.1);
  }
  
  .switch input:checked + .slider .slider-btn .light {
    background-color: rgb(35, 158, 4);
    box-shadow: 0px 0px 10px 0px rgb(57, 230, 14);
  }

  .switch-container {
    top: 6rem;
    right: 6rem;
  }

  .avatar{
    height: 40px;
    border-radius: 50%;
  }

  .btn-remove-img {
      display: none !important;
      bottom: 5px;
      right: 5px;
      width: 30px;
      height: 30px;
      padding: 0;
      font-size: 1rem;
      border-radius: 50%;
  }

  .img-rem:hover .btn-remove-img {
      display: block !important;
  }

  .sidebar ul li a{
    font-size: smaller;
  }

  .submenu {
    padding-left: 15px;
  }