
.category-item.active, .sub-category.active, .sub-category2.active {
  text-decoration: underline;
  color: #ffb600;
  font-weight: bold;
}

.category {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 50px;
  cursor: pointer;
  font-weight: 700;
}

.category-item:last-child {
  margin-right: 0;
}

.category-item img {
  width: 100px;
  height: 100px;
}

.category-item a {
color:#ffb600;
}
.sub-category a, .sub-category2  a {
color:#ffb600;
}

.sub-categories, .sub-categories2 {
  display: none;
  justify-content: center;
  margin-bottom: 20px;
}

.sub-category, .sub-category2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}

.sub-category:last-child {
  margin-right: 0;
}

.sub-category img, .sub-category2 img {
  width: 80px;
  height: 80px;
}

.sub-categories.show {
  display: flex;
}

.sub-categories.hide {
  display: none;
}

.sub-categories2.show {
  display: flex;
}

.sub-categories2.hide {
  display: none;
}

main p:last-child {
  font-size: 17px;
}

table {
                                          
        margin: 0 auto; /* Centers the table horizontally */
        max-width: 50%; /* Sets a maximum width for the table */
        }
                                        
        td {
            padding: 20px;
            border: 1px solid black;
            }
            
            tr {
  background-color: #fcd641;
}
        tr:nth-child(even) {
             background-color: #E7E9EB;
        }
                                    
                                    
                                    
                                    
@media only screen and (max-width: 600px) {

.category {
 display: block;
}
.sub-categories.show {
  display: block;
}
.sub-categories2.show {
  display: block;
}

.category-item {
margin-right: 0px;
}
.sub-category, .sub-category2 {
  margin-right: 0px
}
  table {
                                          
        margin: 0 auto; /* Centers the table horizontally */
        max-width: 100%; /* Sets a maximum width for the table */
        }


}