/* Make all tab text larger and change color */
.nav-pills .nav-link {
    font-size: 25px;    /* Bigger text */
    color: #555;        /* Medium gray for unselected tabs */
}

/* Make active tab bold and green */
.nav-pills .nav-link.active {
    font-weight: bold;
    color: #2C7A7B;     /* Active tab text color */
    background-color: #E6FFFA; /* Optional: lighter background for active tab */
}
