.slider-container {
    position: relative;
    width: 100%;
  }
  
  .my-slider {
    margin-bottom: 10px; /* Pour donner de l'espace entre le slider et les contrôles */
  }
  
  .controls {
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
  }
  
 
  /* Points de navigation */
  .tns-nav {
    text-align: center;
  }
  
  .tns-nav button {
    border: none;
    background: #ddd;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    cursor: pointer;
    outline: none;
  }
  
  .tns-nav button.tns-nav-active {
    background: var(--bs-primary);
    height: 12px;
  }
  