/* Container styling */
.breadcrumb {
    background-color: transparent; /* Removes default grey box */
    padding: 10px 0;
    font-size: 14px;
}

/* Link color */
.breadcrumb > li > a {
    color: #000000 !important; /* Your brand blue */
    text-decoration: none;
	font-weight: bold;
}

/* Active (Current) page color */
.breadcrumb > .active {
    color: #6c757d;
    font-weight: bold;
}

/* Style the individual tab links */
.nav-tabs.nav-account > li > a {
    color: #000000 !important; /* Dark gray text */
	text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0; /* Rounded top corners */
    padding: 10px 20px;
    transition: all 0.3s ease;
}