/*
|--------------------------------------------------------------------------
| Plugin Navigation Header Tabs
|--------------------------------------------------------------------------
*/

.wpdistro-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dcdcde;
    margin: 0 0 20px 0;
    padding-bottom: 0;
}

.wpdistro-nav-tabs {
    display: flex;
    gap: 24px;
}

.wpdistro-tab {
    display: inline-block;
    padding: 12px 2px;
    font-size: 14px;
    font-weight: 600;
    color: #50575e;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.wpdistro-tab:hover {
    color: #ff4f00;
}

.wpdistro-tab.active {
    color: #ff4f00;
}

.wpdistro-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ff4f00;
}

.wpdistro-nav-right {
    padding-bottom: 2px;
}

@media (max-width: 782px) {
    .wpdistro-nav-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .wpdistro-nav-tabs {
        gap: 16px;
        flex-wrap: wrap;
    }
}