* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterRegular.woff2");
  font-display: swap;
  font-weight: 400;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.panel {
  display: flex;
  margin: 0;
  padding: 16px;
  list-style: none;
  gap: 12px;
}

.panel__btn {
  display: inline-flex;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  color: #111827;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.panel__btn:hover {
  border-color: #523ee8;
  color: #fff;
  background: #523ee8;
}

.panel__btn--active {
  border-color: #523ee8;
  color: #fff;
  background: #523ee8;
  pointer-events: none;
}
