/* Style for all tabs initially */


.custom-tabs .mud-tab {
    color: var(--mud-palette-primary);
    transition: background-color 0.3s, color 0.3s;
}

/* Style applied ONLY when a tab becomes active */
.custom-tabs .mud-tab.mud-tab-active {
    background-color: var(--mud-palette-primary);
    color: white;
}

/* Remove default indicator */
.custom-tabs .mud-tab-indicator {
    display: none;
}
