/* Project tabs — palette Market Health (clair + or) */
.project-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border-bottom: 1px solid #e8eaef;
    padding: 0 32px;
    height: 44px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: sticky;
    top: 0;
    z-index: 60;
}
.project-tab {
    color: #64748b;
    padding: 0 18px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.project-tab:hover {
    color: #1a1a2e;
}
.project-tab.active {
    color: #a58539;
    border-bottom-color: #a58539;
}

/* Push any sticky page header below the project tabs (Market Health) */
.project-tabs ~ .header,
body > .header {
    top: 44px !important;
}

/* Social tool: body is display:flex row, so we fix the tabs at top and offset the body */
body.social-tool {
    padding-top: 44px !important;
    box-sizing: border-box !important;
}
body.social-tool .project-tabs {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
}
body.social-tool .sidebar {
    height: calc(100vh - 44px) !important;
}
