@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
    font-family: 'arabic';
    src: url('../fonts/NotoSansArabic-VariableFont_wdth.ttf');
}
*{
    box-sizing: border-box;
    font-family: 'poppins';
}

.poppins{
    font-family: 'poppins';
}
.arabic{
    font-family: 'arabic';
}

#pagination-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#pagination-container:has(li.active){
    text-overflow: ellipsis;
}

.nav{
    color: white;
    background-color: white !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 2rem;
    margin-bottom: 1rem;
    box-shadow: 5px 5px 3px 3px rgba(0,0,0,0.05);
}

.nav-logo{
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    aspect-ratio: 3/2;
    object-fit: contain;
}
/*
.nav-list{
    display: flex;
    cursor: pointer;
    padding-top: 0.6rem;
    list-style-type: none;
    gap: 2rem;
}

.nav-item:hover{
  color: rgba(255, 255, 255, 0.5);
}
*/
.searchbox-container{
    width: 100%;
    display:flex;
    gap: 1rem;
    padding: 1rem;
}

.input-container{
    display:flex;
    padding:0;
}

.hide{
    display: none !important;
}

.searchbox{
    border: 1px solid #212529;
    padding: 0;
    border-right: none;
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

/* This is the styling for the pagination of the data table */

/* .pagination{
    display: flex;
    justify-content: center;
}

.page-link{
    cursor: pointer;
    color:#212529;
}

.page-link:hover{
    color: #212529;
} */

.text-poppins{
    font-family: 'Poppins';
    color: #212529;
}

.buttons-container{
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-buttons{
    background-color: white;
    color: #212529;
    border: 0.5px solid #212529;
    padding: 0.5rem;
    border-radius: 5px;
    box-shadow: 5px 5px 2px 2px rgba(0,0,0,0.4);
}

#table-container{
    padding: 5px;
}

.data-filters-section{
    display: flex;
    gap:2rem;
    padding-left: 10px;
    padding-bottom: 20px;
    justify-content: space-between;
}

#add-button-container{
    margin-right: 0.6rem;
}

.a-link{
    text-decoration: none;
    width: 100%;
    display: block;
    color: #212529;
}
.select-item:hover .a-link{
    color: white;
}

.custom-icon{
    width: 32px;
    height: 32px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }