/*Input Your Custom CSS Here*/
.financials-sub-tabs {
    display: flex; /* Flexbox for horizontal layout */
    justify-content: flex-start; /* Align tabs to the left */
    margin-bottom: 20px; /* Space between tabs and content */
}

.financials-sub-tabs .nav-item {
    margin-right: 20px; /* Space out the tabs horizontally */
}

.financials-sub-tabs .nav-link {
    padding: 10px 20px; /* Adjust padding for the tabs */
    border-radius: 4px; /* Optional: Rounded tabs */
}

/* Active tab styling */
.financials-sub-tabs .nav-link.active {
    background-color: #fff;
    color: black;
}

/* Hover effect for tabs */
.financials-sub-tabs .nav-link:hover {
    background-color: #fff;
    color: black;
}