* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgba(28, 28, 28, 0.4); 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
a{
    color: rgba(50, 63, 73, 1) ;
    text-decoration: none  !important;
    
}
a:hover{
    color: rgba(50, 63, 73, 1) ;

}
body{
    background-color: #F5F5F5 ;
    padding: 20px ;
    font-family: sans-serif;
    overflow-x: hidden;
}

.header-desktop{
    display: flex;
    justify-content: space-between;
}
.header-mobile{
    display: none;
}
header .profile img{
    height: 48px ;
    width: 48px;
    border-radius: 48px;
}
header section:first-child{
    display: flex;
    align-items: center;
}
header .links a{
    padding: 5px;
    margin: 0 5px;
}
header .links a.active{
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black;
}

.main-card{
    background: rgba(255, 255, 255, 1);
    padding: 10px;
}
main{
    margin-top: 20px;
    padding: 0 30px;
}

.tabs-container {
    overflow-x: auto; /* Allow horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
    padding: 10px;
}
/* Hide scrollbar in WebKit browsers */
.tabs-container::-webkit-scrollbar {
    display: none; /* Hide the scrollbar */
}
main .tabs{
    display: flex;
    flex-wrap: nowrap; /* updated */

}
main .tab{
    background-color: rgba(255, 255, 255, 1);
    color: rgba(170, 185, 197, 1);
    margin: 0 5px;
    border-radius: 140px;

    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    user-select: none; /* Disable text selection */
    flex-shrink: 0; /* Prevent the tab from shrinking */
    text-align: center;
    white-space: nowrap;
}
main .tab.active{
    background-color: rgba(52, 112, 171, 1);
    color: white;
    padding: 10px;
    margin: 0 5px;
    border-radius: 140px;
}
.card{
    border: none;
    border-radius: 12px;
}
.product{
    border-left: 10px solid #F5F5F5;
    border-radius: 12px;
}
.main-btn{
    border-radius: 140px;
    padding: 8px 10px 8px 10px;
    background-color: white;
    color: black;
    border: none !important;
    outline: none !important;
}
.search-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(224, 234, 246, 1);
    padding: 8px;
}
.search-bar input{
    border-radius: 140px  0 0 140px;
    padding: 8px 10px 8px 10px;
    background-color: rgba(255, 255, 255, 0.4);
    color: black;
    border: none;
    outline: none;
    margin: 0;
    width: 110px;
}
.search-bar button{
    border-radius: 0  140px 140px 0;
    padding: 8px 10px 8px 10px;
    background-color: white;
    color: black;
    border: none;
    outline: none;
    margin: 0;
}
.section-table{
    width: 100%;
    overflow-x: scroll;
}
table{
    width: 100%;
}
table td,th{
    padding: auto;
    text-align: center;
    padding: 10px;
}
table thead tr{
    border-bottom: 1px solid rgba(28, 28, 28, 0.4);
    
}
table th{
    color: rgba(28, 28, 28, 0.4);
}
.pointer{
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .header-desktop .links{ 
        display: none;
    }
    .header-mobile{
        display: block;
    }
}
@media only screen and (max-width: 425px) {
    body {
      padding: 10px;
    }
    main{
        padding: 0;
    }
    .search-bar input{

        width: 110px;
    }
    header .links a{
        padding: 5px;
        font-size: 15px;
        margin: 0 0px;
    }
}