@import url("https://fonts.googleapis.com/icon?family=Material+Icons");@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-inter: "Inter", sans-serif;
}
body {
  font-family: var(--font-inter), serif;
  font-size: 16px;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  transition: visibility 0.3s ease;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.thin-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multiline_truncate {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.preview strong {
  font-weight: 700;
}
.preview ul {
  list-style: initial;
}
.preview ul li {
  list-style-type: inherit;
}
.preview ol li {
  list-style-type: inherit;
}