/* TRAFIX V43.5.3 — analytics main router/UI fix */

/* The legacy Spend/Analytics switch must never live on the analytics landing screen. */
#campaignWorkflowTabs{display:none!important}

/* Default: source-specific workspaces stay hidden until the source is selected. */
body[data-analytics-source=""] #campaignWorkspace,
body[data-analytics-source=""] #fbWorkspace,
body[data-analytics-source=""] #googleWorkspace,
body:not([data-analytics-source]) #campaignWorkspace,
body:not([data-analytics-source]) #fbWorkspace,
body:not([data-analytics-source]) #googleWorkspace{display:none!important}

/* FB and Google use their own new workspaces. Never allow the old TT/legacy workspace to leak through. */
body[data-analytics-source="fb"] #campaignWorkspace,
body[data-analytics-source="google"] #campaignWorkspace{display:none!important}
body[data-analytics-source="fb"] #googleWorkspace{display:none!important}
body[data-analytics-source="google"] #fbWorkspace{display:none!important}

/* TT is the only source that still uses campaignWorkspace. */
body[data-analytics-source="tt"] #fbWorkspace,
body[data-analytics-source="tt"] #googleWorkspace{display:none!important}

/* Static navigation used on the "По сайтах" page. */
.analytics-source-nav-card{margin-bottom:16px}
.analytics-static-source-nav .traffic-source-nav-link{
  min-width:96px;
  border:1px solid transparent;
  border-radius:10px;
  padding:10px 18px;
  background:transparent;
  color:#54604f;
  font:inherit;
  font-size:12px;
  font-weight:850;
  cursor:pointer;
  text-decoration:none;
  text-align:center;
  transition:background .16s ease,box-shadow .16s ease,color .16s ease,border-color .16s ease;
}
.analytics-static-source-nav .traffic-source-nav-link:hover{background:rgba(255,255,255,.82);color:#253022}
.analytics-static-source-nav .traffic-source-sites-link.active{
  background:#dcebc8;
  color:#2f5a28;
  border-color:#bfd4a4;
  box-shadow:0 4px 12px rgba(67,100,43,.14);
}

/* Keep the navigation truly centered and identical on both pages. */
.analytics-source-nav-card .traffic-source-head{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;text-align:center}
.analytics-source-nav-card .traffic-source-head>div{text-align:center}

@media(max-width:760px){
  .analytics-static-source-nav{width:100%;display:grid;grid-template-columns:repeat(3,1fr)}
  .analytics-static-source-nav .traffic-source-nav-link{min-width:0;padding:9px 7px}
  .analytics-static-source-nav .traffic-source-divider{height:28px;margin:0 1px}
}
@media(max-width:520px){
  .analytics-static-source-nav{grid-template-columns:repeat(3,1fr)}
  .analytics-static-source-nav .traffic-source-divider{display:none}
  .analytics-static-source-nav .traffic-source-sites-link{grid-column:1/-1;border-top:1px solid #d5dfcd;margin-top:2px}
}
