/* Style for active tab link */
.nav-link.active small {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    /* Adjust the thickness of the underline */
    text-underline-offset: 3px;
    /* Adjust the spacing between text and underline */
    color: #007bff;
    /* Primary color for the link text */
}

/* Style for unselected tab links */
.nav-link small {
    text-decoration: none;
    /* Remove underline for unselected links */
    color: #6c757d;
    /* Secondary color for the link text */
}

/* Style for btn-link (normal state) */
.btn-link {
    color: #6c757d !important;
    /* Normal text-muted color with !important */
    text-decoration: none !important;
    /* Remove the underline with !important */
}

/* Style for btn-link on hover and focus */
.btn-link:hover,
.btn-link:focus {
    border: 1px solid #17a2b8 !important;
    /* Add a border on hover/focus with !important */
}