.select-body{
  background:var(--bg);
  overflow-y:auto;
  height:auto;
  min-height:100vh;
}
.select-topbar{
  background:var(--navy);
  color:#fff;
  padding:20px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:4px solid var(--navy-2);
}
.select-topbar h1{ margin:0 0 4px 0; font-size:22px; }
.select-sub{ font-size:13px; opacity:.8; }
.select-topbar-right{ display:flex; align-items:center; gap:14px; }
.select-nav-link{
  color:#fff;
  background:rgba(255,255,255,.12);
  padding:9px 16px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.select-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
  padding:26px;
  max-width:1200px;
  margin:0 auto;
}

.station-tile{
  background:#fff;
  border:2px solid var(--line);
  border-radius:16px;
  padding:22px;
  text-align:left;
  cursor:pointer;
  transition:transform .1s ease, box-shadow .15s ease;
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.station-tile:active{ transform:scale(.98); }
.station-tile.free{ border-color:var(--duty-strong); }
.station-tile.free:hover{ box-shadow:0 6px 18px rgba(46,139,79,.18); }
.station-tile.busy{
  border-color:var(--line);
  background:#F5F6F7;
  cursor:not-allowed;
  opacity:.75;
}
.station-tile.mine{ border-color:var(--toilet-strong); }

.tile-id{
  font-family:var(--mono);
  font-size:12px;
  color:var(--ink-soft);
}
.tile-name{
  font-size:18px;
  font-weight:700;
  margin:4px 0 6px 0;
}
.tile-team{
  font-size:12.5px;
  color:var(--toilet-strong);
  font-weight:700;
  margin-bottom:6px;
}
.tile-shift{ font-size:12.5px; color:var(--ink-soft); }
.tile-status{
  display:inline-block;
  margin-top:12px;
  font-size:12px;
  font-weight:700;
  padding:5px 12px;
  border-radius:999px;
  align-self:flex-start;
}
.tile-status.free{ background:var(--duty-bg); color:var(--duty-strong); }
.tile-status.busy{ background:#E4E7EA; color:var(--ink-soft); }
.tile-status.mine{ background:var(--toilet-bg); color:var(--toilet-strong); }

.select-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:60px 20px;
  color:var(--ink-soft);
}
.select-empty a{ color:var(--navy); font-weight:700; }
