/* Hide scrollbar for Chrome, Safari and Opera */
.tabs-container::-webkit-scrollbar {
    display: none;
    
}
/* Hide scrollbar for IE, Edge and Firefox */
.tabs-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
} 

.tabs-container {
    width: 90%;
    height: auto;
    min-width: 70%;
     overflow-x: auto;
    overflow-y: hidden; 
    white-space: nowrap;
    border-bottom: 1px solid  var(--borderColor);
    font-family: Roboto;
    font-weight: 500;
    padding: 2px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    margin-top: 12px;
    
    min-height: 48px;
/*    background-color: red;*/
}

.tab {
    display: flex;
    justify-content: space-around;
    text-align: center;  
    padding: 10px 10px;
    gap: 8px;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    color: var(--ecritureLight);
    font-size: 24px;
    font-weight: 600;
}

.tab-icon {

    width: 20px;
}
.tab-title {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    align-items: center;
    color: var(--ecritureLight);
    }
.tab.active {
    border-bottom: 2px solid var(--ecriture);
}

.tab-content-container {
    /* padding: 8px; */
    width: auto;
    height: auto;

}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


@media screen and (max-width: 580px) {
    
  .tabs-container {
    justify-content: start;

  }

  .tab{
    font-size:15px;
  }
}




