/* Photo/Video tabs (unusual but clean) */
.modeTabs{
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:12px;
  padding:8px 0;
  border:0;
  border-radius:0;
  background: transparent;
  box-shadow: none;
  overflow:visible;
  flex-wrap:wrap;
}
.modeTabs::-webkit-scrollbar{ display:none; }
.modeBtn{
  border:1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  padding:8px 12px;
  font-size: 13px;
  cursor:pointer;
  white-space:nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.modeBtn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.modeBtn.active{
  background: linear-gradient(135deg, rgba(17,24,39,.95), rgba(17,24,39,.88));
  color:#fff;
  border-color: rgba(17,24,39,.25);
}
.modeHint{
  margin-left:auto;
  color: var(--muted);
  font-size: 12px;
  padding-right: 6px;
}
