/* SwiftShare PRO global-only mode switch */

.network-mode-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.mode-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px;
  border-radius:999px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 10px 28px rgba(0,0,0,.24);
}

.mode-btn{
  min-height:34px;
  padding:0 13px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  color:#cfe0ff;
  background:transparent;
  font-family:inherit;
  font-size:13px;
  font-weight:950;
  transition:transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.mode-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.08);
}

.mode-btn.active{
  color:#081124;
  background:linear-gradient(135deg,#5cff98,#9cffbd);
  box-shadow:0 0 22px rgba(92,255,152,.2);
}

.mode-status{
  min-height:24px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#afc7ff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}

@media (pointer:fine) and (min-width:921px){
  .network-mode-stack{
    gap:6px;
  }

  .mode-status{
    display:none;
  }
}

@media (max-width:920px){
  .network-mode-stack{
    width:100%;
    gap:6px;
  }

  .mode-switch{
    width:100%;
    max-width:340px;
  }

  .mode-btn{
    flex:1;
    min-height:36px;
    padding:0 8px;
    font-size:12px;
  }

  .mode-status{
    font-size:10px;
  }
}
