.tabs-v2 {
    margin: 3rem 0;
}

.tabs-v2__inner {
    flex-direction: column;
    align-items: stretch;
}

/* Alignment variations */
.tabs-v2.align-left .tabs-v2__inner {
    justify-content: flex-start;
}

.tabs-v2.align-center .tabs-v2__inner {
    justify-content: center;
}

.tabs-v2.align-right .tabs-v2__inner {
    justify-content: flex-end;
}

/* Tab Button Styles */
.tabs-v2__inner .tab {
    display: flex;
    padding: 0.5rem 1rem;
    align-items: center;
    gap: 0.5rem;
    color: #7A7A7A;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25rem;
    border-bottom: 1px solid #7A7A7A;
    justify-content: center;
}

.tabs-v2__inner .tab:hover {
    background-color: #e5e5e5;
    color: #333;
}

.tabs-v2__inner .tab.active {
    background-color: #003D7C;
    /* Light blue color */
    color: white;
    /* Keeping the text dark blue for contrast */
    border-bottom-color: #003D7C;
    /* Making bottom border dark blue */
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .tabs-v2__inner {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .tabs-v2__inner .tab {
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.5625rem;
    }
}