Taste of Añu
due to the nature of our restaurant-style, please note that some ingredients and items may change based on seasonality and availability
.tabs-container {
width: 100%;
}
.tab-button-group {
display: flex;
justify-content: center;
}
.tab-button {
padding: 10px 20px;
cursor: pointer;
border: 0px solid #ffffff;
background-color: #1c1c1c;
color: #ffffff;
}
/* Active tab style with white underline */
.tab-button.active {
background-color: #1c1c1c;
color: #ffffff;
font-weight: bold;
border-bottom: 2px solid #ffffff; /* White underline on hover */
}
/* Hover underline for inactive tabs */
.tab-button:hover:not(.active) {
border-bottom: 2px solid #ffffff; /* White underline on hover */
}
.tab-content {
margin-top: 10px;
display: block; /* Initially show all tabs */
}
.tab-section {
display: none; /* Hide all tabs by default */
}
.tab-section.active {
display: block;
}