.app-layout {
  background: #EAEDF3;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

.app-layout .app-sidebar {
  background: var(--bs-primary-dark);
  width: 280px;
  height: 100%;
}

.app-layout .app-sidebar .sidebar {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  height: calc(100% - 140px);
}

.app-layout .app-sidebar .sidebar-item {
  background: var(--bs-primary-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  padding: 12px 16px;
}

.app-layout .app-sidebar .sidebar-item:not(.title):hover {
  background: var(--bs-primary);
  color: var(--bs-secondary);
}

.app-layout .app-sidebar .sidebar-item.title {
  cursor: unset;
}

.app-layout .app-sidebar .sidebar-item.active {
  background: var(--bs-primary);
  color: #F2994A;
}

.app-layout .app-sidebar .sidebar-item i {
  font-size: 18px;
}

.app-layout .app-sidebar .sidebar-item-child {
  background: var(--bs-primary-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  padding: 12px 42px;
  color: rgba(255, 255, 255, 0.7);
}

.app-layout .app-sidebar .sidebar-item-child:not(.title):hover {
  background: var(--bs-primary);
  color: var(--bs-secondary);
}

.app-layout .app-sidebar .sidebar-item-child.active {
  background: var(--bs-primary);
  color: #F2994A;
}

.app-layout .app-body {
  position: relative;
  width: calc(100% - 280px);
  height: 100%;
  overflow-y: auto;
}

.app-layout .app-body .app-navbar {
  width: 100%;
  height: 58px;
  position: sticky;
  top: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  z-index: 10;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.app-layout .app-body .app-navbar-left {
  height: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.app-layout .app-body .app-navbar-middle {
  height: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.app-layout .app-body .app-navbar-right {
  height: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.app-layout .app-body .app-content {
  width: 100%;
  padding: 20px 30px 40px;
}

/* width */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.block {
  background-color: white;
  border-radius: 8px;
  padding: 24px 30px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  font-weight: 500;
}

.breadcrumb-item a {
  text-decoration: none;
  transition: 0.1s linear;
}

.breadcrumb-item a:hover {
  color: var(--bs-primary-500);
}

html,
body {
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

