.theme-control{
  justify-self:end;
  display:inline-grid;
  grid-template-columns:repeat(3,minmax(42px,1fr));
  gap:2px;
  padding:3px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow);
}
.theme-control button{
  min-height:32px;
  border:0;
  border-radius:6px;
  background:transparent;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}
.theme-control button:hover{
  color:var(--accent);
}
.theme-control button.active{
  background:var(--accent);
  color:#fff;
}
@media(max-width:960px){
  .theme-control{
    justify-self:start;
    margin-bottom:16px;
  }
}
