.p-layout {
  min-height: 100%;
  width: 100%;
}

.p-layout-aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 212px;
  height: 100%;

  overflow-x: hidden;
  overflow-y: auto;

  /* padding: 0 0.75rem 1rem; */
  padding: 0 0.75rem 1rem 1.5rem;

  border-right: 1px solid var(--surface-600);
  background-color: var(--surface-50);

  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.p-layout-aside img {
  display: block;
  width: 148px;

  object-fit: contain;
  aspect-ratio: 16/9;

  /* margin: 0 auto; */
}

.p-layout-container {
  margin-left: 212px;
}

.p-layout-container.p-layout-full {
  margin-left: 0;
}

.p-layout-topbar {
  position: fixed;
  top: 0;
  left: 212px;

  height: 72px;
  width: calc(100% - 212px);

  border-bottom: 1px solid var(--surface-600);
  background-color: var(--surface-50);
}

.p-layout-topbar.p-layout-full {
  left: 0;
  width: 100%;
}

.p-layout-content {
  padding-top: 72px;

  height: calc(100% - 72px);
  width: 100%;
}
