body,
html {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  color: #4b5563;
  font-size: 14px;
  line-height: 1;
}

.wpr {
  display: flex;
}

.sidenav {
  width: 15rem;
  min-width: 15rem;
  min-height: 100vh;
  background: #fafafa;
  border-right: 1px solid #ccc;
}

.sidenav ul {
  list-style-type: none;
  padding: 0;
}

.sidenav ul li {
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}

.sidenav ul li:hover {
  background: #ccc;
}

.sidenav ul li.active {
  border: 1px solid blue;
}

.container {
  flex: 1;
  padding: 1rem 2rem;
  background: var(--color-gray-50);
}

.group {
  pointer-events: none;
  font-weight: bold;
  color: #000;
}

[hidden] {
  display: none !important;
}

.mb-4 {
  margin-bottom: 1rem;
}

.overlay-box {
  width: 30rem;
  height: 20rem;
}

.overlay-tip {
  width: 6rem;
  height: 5rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.grid-cell {
  border: 1px solid red;
  height: 3rem;
  width: 100%;
}

.pos-box {
  position: absolute;
  border: 1px solid red;
  background: rgba(232, 217, 225, 0.5);
  height: 5rem;
  width: 15rem;
}
