/* Eggy Pool friends nav button - standalone topbar control.
   Uses unique classes/ID so it will not touch live tables, rank bars, online users, cue shop, or wallet hooks. */
.eggy-friends-nav-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:40px;
  padding:8px 12px;
  border-radius:8px;
  border:1px solid rgba(0,238,255,.38);
  background:linear-gradient(180deg,rgba(13,30,45,.92),rgba(4,13,22,.94));
  color:#f3ffff;
  font-family:inherit;
  font-size:11px;
  font-weight:950;
  letter-spacing:.45px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 0 12px rgba(0,238,255,.08);
  transition:transform .16s ease, filter .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space:nowrap;
}
.eggy-friends-nav-button:hover,
.eggy-friends-nav-button:focus-visible{
  transform:translateY(-1px);
  filter:brightness(1.12);
  border-color:rgba(0,238,255,.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 0 16px rgba(0,238,255,.18);
  outline:none;
}
.eggy-friends-nav-icon{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:7px;
  background:rgba(0,238,255,.11);
  border:1px solid rgba(0,238,255,.22);
  font-size:14px;
  line-height:1;
}
.eggy-friends-nav-text{line-height:1;}
@media(max-width:1180px){
  .eggy-friends-nav-button{order:7;margin-left:auto;}
}
@media(max-width:760px){
  .eggy-friends-nav-button{
    min-width:44px;
    min-height:42px;
    padding:8px 10px;
    border-radius:9px;
  }
  .eggy-friends-nav-text{display:none;}
  .eggy-friends-nav-icon{width:24px;height:24px;font-size:15px;}
}
@media(max-width:430px){
  .eggy-friends-nav-button{padding:7px 8px;min-width:40px;min-height:40px;}
  .eggy-friends-nav-icon{width:22px;height:22px;font-size:14px;}
}
