@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-start: rgb(134, 15, 173);
  --bg-end: rgb(26, 8, 77);
  --accent: #744993;
  --text: #f8fafc;
  --hover: rgba(2, 22, 8, 0.5);
  --submenu-bg: rgba(255, 255, 255, 0.03);
  --badge-bg: #ff4d4f;
  --badge-text: #fff;

  /* Extra globals */
  --navbar-height: 64px;
  --sidebar-width: 241px;
  --page-bg: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --font: "Outfit", sans-serif;
}

html,
body {
  height: 100%;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}
@keyframes ht-progress {
  from { width: 100%; }
  to   { width: 0%;   }
}