/* Navigation + lightweight controls (Orbit Theme) */

.shiftcontrol-app .sc-navlist,
.shiftcontrol-app .sc-quicklinks{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.shiftcontrol-app .sc-quicklinks{
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: end;
  gap: 12px;
}

.shiftcontrol-app .sc-navlist a,
.shiftcontrol-app .sc-quicklinks a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.90);
  text-decoration: none;
}

.shiftcontrol-app .sc-navlist a:hover,
.shiftcontrol-app .sc-quicklinks a:hover{
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.08);
}

.shiftcontrol-app .sc-search{
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px;
}

.shiftcontrol-app .sc-search-input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
}

.shiftcontrol-app .sc-search-btn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}

.shiftcontrol-app .sc-search-btn:hover{
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.10);
}

@media (max-width: 980px){
  .shiftcontrol-app .sc-quicklinks{
    justify-content: start;
    grid-auto-flow: row;
  }
}
