*, *::before, *::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 10px;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #141414;
  background: #FFFFFF;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
div {
  position: relative;
}
header {
  display: flex;
  height: 6.9rem;
  background: #EDF1F5;
  border-bottom: 0.1rem solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 100;
}
.project {
  flex: 0 0 26.1rem;
  min-width: 26.1rem;
  border-right: 0.1rem solid #E5E5E5;
  background: #FFFFFF;
}
.topbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  gap: 1rem;
  overflow: hidden;
}
.breadcrumb {
  overflow: hidden;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #141414;
}
.breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.9rem;
  margin: 0 0.5rem;
  background-color: currentColor;
  opacity: 0.35;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}
.breadcrumb li.active {
  color: #4062BB;
  font-weight: 500;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.8rem;
  padding: 0 0.75rem;
  background: #FFFFFF;
  border: 0.1rem solid #E5E5E5;
  border-radius: 0.4rem;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  color: #545454;
  font-size: 1.4rem;
  cursor: pointer;
  width: 20rem;
}
.search:hover {
  border-color: #ccc;
}
.icon-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  background: #FFFFFF;
  border: 0.1rem solid #E5E5E5;
  border-radius: 0.4rem;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  color: #141414;
  cursor: pointer;
}
.icon-group button:hover {
  background: #F6F8FA;
}
.icon-group button svg {
  display: block;
}
.user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  background: #FFFFFF;
  border: 0.1rem solid #E5E5E5;
  border-radius: 50%;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  color: #141414;
  cursor: pointer;
}
.user:hover {
  background: #F6F8FA;
}
footer {
  background: #EDF1F5;
  border-top: 0.1rem solid #E5E5E5;
  padding: 0 1.25rem;
  height: calc(6.9rem / 2);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #545454;
}
footer p {
  margin: 0;
}
.menu {
  display: flex;
  flex-direction: column;
  width: 26.1rem;
  overflow-y: auto;
  background: #FFFFFF;
  border-right: 0.1rem solid #E5E5E5;
  overflow-y: auto;
  flex-shrink: 0;
  padding: 0.8rem 0;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0 2rem;
}
.menu li a, .menu li > a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.2rem;
  height: 3.6rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  color: #141414;
  text-decoration: none;
  white-space: nowrap;
}
.menu li a svg:first-child, .menu li > a svg:first-child {
  flex-shrink: 0;
  color: #545454;
}
.menu li a .chevron, .menu li > a .chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: #6B6B6B;
  transition: transform 0.2s ease;
  width: 1.6rem;
  height: 1.6rem;
}
.menu li a:hover, .menu li > a:hover {
  background: #F6F8FA;
}
.menu li a.active, .menu li > a.active {
  background: #F6F8FA;
  color: #4062BB;
  font-weight: 500;
}
.menu li a.active svg:first-child, .menu li > a.active svg:first-child {
  color: #4062BB;
}
.menu li.has-sub > ul {
  display: none;
  position: relative;
  padding: 0 0 0.4rem 0;
}
.menu li.has-sub > ul::before {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 0.1rem;
  background: #E5E5E5;
}
.menu li.has-sub > ul li a {
  height: 3.2rem;
  padding-left: 3.8rem;
  font-size: 1.4rem;
  border-radius: 0.6rem;
}
.menu li.has-sub.open > ul {
  display: block;
}
.menu li.has-sub.open > a .chevron {
  transform: rotate(180deg);
}
.menu hr {
  border: none;
  border-top: 0.1rem solid #E5E5E5;
  margin: 0.8rem 0;
}
.menu .group-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.2rem;
  height: 2.8rem;
  font-size: 1.2rem;
  color: #545454;
  margin: 0;
}
.menu-projects .show-all {
  background: #F6F8FA;
}
.menu-projects .show-all:hover {
  background: #eff3f6;
}
.app-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.app-body main {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: #F6F8FA;
}
