.user-dashboards .sidebar {
    width: 350px;
    background-color: #cb043d;
    color: #fff;
    /* height: 100vh; */
    display: flex;
    justify-content: start; /* Changé de justify-content: end; */
    transition: 0.5s width ease;
  }
  footer.site-footer {
    margin: 0
  }
  .user-dashboards .sidebar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease all;
  }
  .user-dashboards {
    min-height: 390px;
  }
  .user-dashboards .sidebar .logo img {
    width: 130px;
    height: auto;
    object-fit: cover;
  }
  
  .user-dashboards .sidebar .menu {
    list-style-type: none;
    padding: 0;
    padding-right: 20px; /* Changé de padding-left: 20px; */
    margin-top: 60px;
  }
  
  .user-dashboards .sidebar .menu li {
    padding: 10px 0px 10px 35px; /* Changé de padding: 10px 35px 10px 0px; */
    border-radius: 0 10px 10px 0; /* Changé de border-radius: 10px 0 0 10px; */
    text-align: justify;
  }
  
  .user-dashboards .sidebar .menu li a,
  .user-dashboards .sidebar .menu a li,
  .user-dashboards .sidebar .menu a {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }
  
  .user-dashboards .sidebar .menu li i {
    padding: 10px;
  }
  
  .user-dashboards .sidebar .menu li:hover {
    background-color: #e17e9a;
  }
  
  .user-dashboards .content {
     width: calc(100% - 300px);
     /* width: 100%; */
     /* overflow-y: scroll; */
     /* max-height: 100vh; */
     transition: 0.2s width ease;
     overflow: hidden;
  }
  .user-dashboards .content.content-user {
      width: calc(100% - 50px);
      transition: 0.2s width ease; 
  }
  .user-dashboards .navbar {
    background-color: #fae5eb;
    padding: 10px 20px;
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-start; /* Changé de justify-content: flex-end; */
    align-items: center;
  }
  
  .user-dashboards .navbar ul {
    list-style-type: none;
    display: flex;
  }
  
  .user-dashboards .navbar ul li {
    margin-left: 20px; /* Changé de margin-right: 20px; */
  }
  
  .user-dashboards .navbar ul li a {
    text-decoration: none;
    color: #333;
  }
  
  .user-dashboards .search-bar {
    /* display: flex; */
    align-items: center;
    position: relative;
    max-width: 300px;
    width: 100%;
    display: none;;
  }
  .user-dashboards .sidebar .flex-sidebar {
      display: flex;
      align-items: center;
      padding: 10px;
      justify-content: space-between;
  }
  
  .icon-sidebar {
      display: block;
      font-size: 22px;
      transform: rotate(90deg); /* Changé de transform: rotate(-90deg); */
      transition: 0.2s ease all;
      cursor: pointer;
  }
  .user-dashboards .sidebar.open {
      width: 50px;
      transition: 0.5s width ease;
      justify-content: center;
  }
  
  .user-dashboards .sidebar.open .menu li a, .user-dashboards .sidebar.open .menu a li, .user-dashboards .sidebar.open .menu a {
      font-size: 0;
      transition: 0.1s ease all;
  }
  
  .user-dashboards .sidebar.open .menu li a i, .user-dashboards .sidebar.open .menu a li, .user-dashboards .sidebar.open .menu a i {
      font-size: 15px;
      padding: 10px 0;
  }
  
  .user-dashboards .sidebar.open .menu li {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: 0;
      padding: 5px 10px;
  }
  
  .user-dashboards .sidebar.open .icon-sidebar {
      transform: rotate(-90deg); /* Changé de transform: rotate(90deg); */
      transition: 0.2s ease all;
  }
  
  .user-dashboards .sidebar.open .logo {
      transition: 0.2s ease all;
      display: none;
  }
  
  .user-dashboards .sidebar.open .flex-sidebar {justify-content: center;}
  
  
  .user-dashboards .sidebar.open .menu {
      padding: 0;
      margin: 60px 0 0;
  }
  .user-dashboards .search-bar input[type="text"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 25px;
    width: 100%;
  }
  
  .user-dashboards .search-bar button {
    margin-right: 10px; /* Changé de margin-left: 10px; */
    padding: 2px 7px;
    background-color: #cb043d;
    color: #fff;
    border: none;
    cursor: pointer;
    position: absolute;
    border-radius: 25px;
    left: 5px; /* Changé de right: 5px; */
  }
  
  .user-dashboards .search-bar button:hover {
    background-color: #cb043d;
  }
  
  .user-dashboards .content .navbar ul li {
    margin-left: 20px; /* Changé de margin-right: 20px; */
    border-left: 1px solid #000; /* Changé de border-right: 1px solid #000; */
    padding-left: 20px; /* Changé de padding-right: 20px; */
  }
  
  .user-dashboards .content .navbar ul li:last-child {
    border-left: 0px; /* Changé de border-right: 0px; */
    padding: 0;
    margin: 0;
  }
  
  .user-dashboards .content .navbar ul {
    margin-bottom: 0px;
  }
  
  .user-dashboards .big {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
  }
  
  .user-dashboards .big::before,
  .user-dashboards .big::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 35px;
    top: 50%;
    right: 0; /* Changé de left: 0; */
    background: #fff;
  }
  
  .user-dashboards .big::before {
    transform: rotate(-45deg); /* Changé de transform: rotate(45deg); */
  }
  
  .user-dashboards .big::after {
    transform: rotate(45deg); /* Changé de transform: rotate(-45deg); */
  }
  
  .user-dashboards .burger-menu-icon {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 102px;
    right: 20px; /* Changé de left: 20px; */
    z-index: 1000;
  }
  
  .user-dashboards .burger-menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: transform 0.3s ease;
  }
  
  .user-dashboards .burger-menu {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0; /* Changé de left: 0; */
    width: 100%;
    height: 100vh;
    background-color: #cb043d;
    color: #fff;
    transition: right 0.3s ease; /* Changé de left 0.3s ease; */
    z-index: 1000;
    overflow-y: auto;
  }
  
  .user-dashboards .table-listing {
    border-radius: 10px !important;
    margin: 50px auto;
  }
  
  .user-dashboards .table-listing th {
    text-align: center;
  }
  
  .user-dashboards .table-listing a {
    color: #000;
    text-decoration: none;
  }
  
  .user-dashboards .table-listing thead {
    border-radius: 10px !important;
    background: #cb043d;
    color: #fff;
  }
  
  .user-dashboards .table-listing thead th {
    font-weight: 600;
    background: #cb043d;
    color: #fff;
    padding: 0.75rem;
    vertical-align: middle;
  }
  
  .user-dashboards .table-listing thead tr th:first-child {
    border-radius: 0px 10px 10px 0px !important; /* Changé de border-radius: 10px 0px 0px 10px !important; */
  }
  
  .user-dashboards .table-listing thead tr th:last-child {
    border-radius: 10px 0px 0px 10px !important; /* Changé de border-radius: 0px 10px 10px 0px !important; */
  }
  
  .user-dashboards .table-listing tbody,.user-dashboards .table-listing tbody tr th,.user-dashboards .table-listing tbody tr td {
    background-color: #fae5eb!important;
    text-align: center;
  }
  
  .user-dashboards tbody:before {
    content: "@";
    display: block;
    line-height: 10px;
    text-indent: -99999px;
    background: #fff;
  }
  
  .user-dashboards .table-listing tbody tr {
    border-bottom: 1px solid grey;
    height: 100px;
  }
  
  .user-dashboards .table-listing tbody tr th,
  .user-dashboards .table-listing tbody tr td {
    padding: 1rem 0.5rem;
    vertical-align: middle;
  }
  
  .user-dashboards .table-listing tbody tr:last-child {
    border: 0px !important;
  }
  
  .user-dashboards .table-listing tbody tr:last-child td {
    border: 0px !important;
  }
  
  .user-dashboards .table-listing tbody tr:last-child th {
    border: 0px !important;
  }
  
  .user-dashboards .table-listing tbody tr:first-child th {
    border-radius: 0px 10px 0px 0px; /* Changé de border-radius: 10px 0px 0px 0px; */
  }
  
  .user-dashboards .table-listing tbody tr:first-child td:last-child {
    border-radius: 10px 0px 0px 0px; /* Changé de border-radius: 0px 10px 0px 0px; */
  }
  
  .user-dashboards .table-listing tbody tr:last-child th {
    border-radius: 0px 0px 10px 0px; /* Changé de border-radius: 0px 0px 0px 10px; */
  }
  
  .user-dashboards .table-listing tbody tr:last-child td:last-child {
    border-radius: 0px 0px 0px 10px; /* Changé de border-radius: 0px 0px 10px 0px; */
  }
  
  .user-dashboards .table-listing tbody td:has(a) {
    /* display: flex;
    justify-content: space-around;
    border: 0; */
    text-align: center;
  }
  
  .user-dashboards .table-listing td a {
    padding: 0 5px;
  }
  
  .user-dashboards .table-listing {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .user-dashboards .content .container {
  }
  .user-dashboards .content > .container:nth-of-type(1) {
      max-width: 100%;
      padding: 0;
  }
  .user-dashboards .content.content-utilisateur > .container:nth-of-type(1) {
      padding: 0 15px;
  }
  .user-dashboards .content .container::-webkit-scrollbar {
    width: 10px;
  }
  
  .user-dashboards .content .container::-webkit-scrollbar-track {
    background-color: #888;
  }
  
  .user-dashboards .content .container::-webkit-scrollbar-thumb {
    background-color: #cb043d;
    border-radius: 0px;
  }
  
  .user-dashboards .content .container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  .user-dashboards .table-header {
    margin: 50px 0 0;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
  }
  
  .user-dashboards .sidebar-wrapper {
    /*position: fixed;*/
    margin: 0;
    background: transparent !important;
  }
  
  .user-dashboards .table-wrapper {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: auto;
  }
  
  .user-dashboards .content .breadcrumb a {
    color: #000;
    text-decoration: none;
  }
  
  .user-dashboards .ajout {
    border-radius: 10px;
    color: #fff;
    background: #cb043d;
    padding: 10px 20px;
    border: 0px;
    margin-right: 15px; /* Changé de margin-left: 15px; */
    text-decoration: none;
  }
  .user-dashboards .import-btn {
    border-radius: 10px;
    color: #fff;
    background: #cb043d;
    padding: 10px 20px;
    border: 0px;
    margin-right: 15px; /* Changé de margin-left: 15px; */
    text-decoration: none;
  }
  .user-dashboards button.recherche-btn {
    background: #fff;
    box-shadow: 0px 0px 6px 0px grey;
    padding: 10px 15px;
    border-radius: 10px;
    border: 0px;
    display: none;
  }
  
  .user-dashboards .input-height {
    height: 180px;
  }
  
  .user-dashboards .red {
    color: #cb043d;
    font-weight: 700;
  }
  
  @media screen and (max-width: 1024px) {
    .user-dashboards .table-listing tbody tr th, .user-dashboards .table-listing tbody tr td {
      width: 200px;
      border: 0;
      padding: 2rem 0.5rem;
  }
  .user-dashboards .table-listing thead tr {
    display: flex;
  }
  .user-dashboards .table-listing tbody tr {
    display: flex;
    vertical-align: middle;
    height: auto;
  }
  .user-dashboards .table-listing thead tr th {
    width: 200px;
  }
    .user-dashboards .sidebar .menu li {
      padding: 10px 0px 10px 30px; /* Changé de padding: 10px 30px 10px 0px; */
    }
  }
  
  @media screen and (max-width: 992px) {
    .user-dashboards .content .container {
      padding: 0 15px;
  }
    .user-dashboards .search-bar {
      max-width: 185px;
    }
  
    .user-dashboards .table-wrapper {
      overflow-x: scroll;
    }
    .user-dashboards .sidebar .menu li a, .user-dashboards .sidebar .menu a li, .user-dashboards .sidebar .menu a {
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .user-dashboards .content {
      width: 100%;
    }
    .user-dashboards .search-bar {
      display: none;
    }
    .user-dashboards .sidebar {
      display: none;
    }
  
    .user-dashboards .burger-menu-icon {
      display: block;
    }
  
    .user-dashboards .menu {
      display: none;
    }
  
    .user-dashboards #burgerMenuIcon {
      z-index: 9999;
    }
  
    .user-dashboards .content .navbar {
      justify-content: flex-start; /* Changé de justify-content: flex-end; */
      height: 55px;
    }
  
    .user-dashboards .burger-menu-icon.open .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, -6px); /* Changé de transform: rotate(-45deg) translate(-5px, 6px); */
      background-color: #fff;
    }
  
    .user-dashboards .burger-menu-icon.open .bar:nth-child(2) {
      opacity: 0;
    }
  
    .user-dashboards .burger-menu-icon.open .bar:nth-child(3) {
      transform: rotate(-45deg) translate(5px, 6px); /* Changé de transform: rotate(45deg) translate(-5px, -6px); */
      background-color: #fff;
    }
  
    .user-dashboards .burger-menu.open {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .user-dashboards .burger-menu ul {
      list-style-type: none;
      padding: 0;
      margin: 50px 0;
    }
  
    .user-dashboards .burger-menu li {
      margin-bottom: 20px;
    }
  
    .user-dashboards .burger-menu li a,
    .user-dashboards .burger-menu a li,
    .user-dashboards .burger-menu a {
      color: #fff;
      text-decoration: none;
      display: block;
      padding: 10px 20px;
    }
  
    .user-dashboards .burger-menu li a:hover {
      background-color: #555;
    }
  
    .user-dashboards .burger-menu i {
      margin-left: 10px; /* Changé de margin-right: 10px; */
    }
  
    .user-dashboards .burger-menu .logo img {
      width: 150px;
      height: 100%;
      object-fit: cover;
    }
  }
  
  @media screen and (max-width: 550px) {
    .flexwrap-button {
      flex-direction: column;
  }
  .flexwrap-button button {
    margin-top: 10px;
    margin-right: 0; /* Changé de margin-left: 0; */
  }
  .form_filtre {
    flex-direction: column;
    width: 100%;
  }
  .flex-text-input {
    width: 100%;
  }
  .form_filtre button {
    margin-top: 10px;
    margin-right: 0; /* Changé de margin-left: 0; */
  }
  .form_filtre {
    margin-top: 10px;
  }
    /* .user-dashboards .search-bar {
      max-width: unset;
      position: absolute;
      display: flex;
      justify-content: center;
      top: 55px;
      right: 0;
      background: #fff;
    } */
    .user-dashboards .navbar ul li a {
      font-size: 13px;
  }
  .user-dashboards .content .navbar ul li {
    margin-left: 10px; /* Changé de margin-right: 10px; */
    padding-left: 10px; /* Changé de padding-right: 10px; */
  }
    .user-dashboards .search-bar input {
      width: 70% !important;
      border: 0 !important;
      border-bottom: 1px solid !important;
      border-radius: 0 !important;
    }
  
    .user-dashboards .search-bar button {
      margin-right: 10px; /* Changé de margin-left: 10px; */
      padding: 2px 7px;
      background-color: #fff;
      color: #cb043d;
      border: none;
      cursor: pointer;
      position: absolute;
      border-radius: 25px;
      left: 5px; /* Changé de right: 5px; */
    }
  }
  
  @media screen and (max-width: 375px) {
    .user-dashboards .content .navbar ul li {
      margin-left: 10px; /* Changé de margin-right: 10px; */
      border-left: 1px solid #000; /* Changé de border-right: 1px solid #000; */
      padding-left: 8px; /* Changé de padding-right: 8px; */
    }
    .user-dashboards .burger-menu-icon {
      top: 123px;
  }
    .user-dashboards .table-header {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .user-dashboards span.plus-icone {
    color: #fff;
    background: #cb043d;
    padding: 4px 7px;
    font-size: 10px;
    border-radius: 60px;
  }
  
  .user-dashboards a:has(.plus-icone) {
    color: #000;
    text-decoration: none;
    margin: 30px 0 0;
    font-weight: 600;
  }
  
  .view-produit-par-exportateur .right .form--inline.clearfix {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .user-dashboards .table-header .right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: flex-start; /* Changé de justify-content: flex-end; */
    width: 100%;
  }
  .view-produit-par-exportateur .right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: flex-start; /* Changé de justify-content: flex-end; */
  }
  
  .view-produit-par-exportateur .right .form--inline.clearfix #edit-title{
    height: 40px;
    width: 200px;
  }
  
  .view-produit-par-exportateur .right .form--inline.clearfix #edit-submit-produit-par-exportateur {
    height: fit-content;
    border: 0 !important;
  }
  
  /*.form-item-moderation-state-0-state {*/
  /*  display: none;*/
  /*}*/
  
  
  /*********Bienvenue*********/
  .title-bienvenue-cepex {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 30px;
    color: #cb043d;
    font-weight: 600;
  }
  
  .title-bienvenue-cepex p {
    margin: 0;
  }
  
  .title-bienvenue-cepex .field {
    margin-right: 10px; /* Changé de margin-left: 10px; */
  }
  
  .contenu-bienvenue p {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin: 20px 0 0;
  }
  
  .title-bienvenue-cepex p {
    font-size: 30px;
    color: #cb043d;
    margin: 0;
  }
  
  .contenu-bienvenue {
    margin: 30px 0 50px;
    position: relative;
    overflow: hidden;
  }
  
  .contenu-bienvenue .profile {
    display: block;
    margin: 20px 0 0;
    font-size: 19px;
    text-align: center;
  }
  
  .contenu-bienvenue .profile h4.label {
    color: #cb033d;
    font-weight: normal;
  }
  
  .contenu-bienvenue .profile .field__item {
    margin: 10px 0 0;
  }
  .right.flex-filtrage-table {
    display: flex;
    align-items: flex-start; /* Changé de align-items: flex-end; */
    justify-content: flex-start; /* Changé de justify-content: flex-end; */
    width: 100%;
  }
  .right.flex-filtrage-table.flex-direction {
    flex-direction: column;
  }
  .flexwrap-button {
    display: flex;
    margin: 10px;
  }
  .form_filtre {
    display: flex;
    align-items: flex-start; /* Changé de align-items: flex-end; */
  }
  .flex-text-input {
    display: flex;
    align-items: flex-start; /* Changé de align-items: flex-end; */
  }
  /*.devis-forms select:not([value=""]) {
    background-color: #eaeaea;
    color: #878787;
    border: none !important;
  }*/
  .devis-forms input[type="text"]:not([value=""]) {
    background-color: #eaeaea;
    color: #878787;
    border: none !important;
  cursor: not-allowed;
      pointer-events: none;
  }
  .devis-forms input[type=file]:not([value=""]) {
    background-color: transparent;
    color: #878787;
    border: 1px solid grey !important;
  }
  .fixed-dashboard {
    position: fixed;
      left: 0; /* Changé de right: 0; */
      top: 50%;
      content: "";
      z-index: 1000;
      transform: translateY(-50%);
  }
  .fixed-dashboard .btn-dashboard {
    border-radius: 0 20px; /* Changé de border-radius: 20px 0; */
    display: flex;
    margin-bottom: 13px;
    background-color: #cb043d;
    height: 58px;
    width: 58px;
    transition: all .2s ease;
    text-decoration: none;
  }
  .fixed-dashboard .btn-dashboard:hover {
    width: 165px;
  }
  .fixed-dashboard .btn-dashboard i {
    margin: auto 25px;
    color: #fff;
  }
  .fixed-dashboard .btn-dashboard span {
    color: #fff;
    margin: auto 0 auto 15px; /* Changé de margin: auto 15px auto 0; */
    font-weight: 500;
  }