*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 0.5rem;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  overflow-y: hidden;
}

.hidden {
  display: none;
}

/****************************** common for all scrollbar ************************************/

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* Subtle scrollbar thumb color */
  border-radius: 4px; /* Rounded edges for a smooth look */
  transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6); /* Darker color on hover */
}

@media screen and (max-width: 600px) {
  body {
    display: grid;
    grid-template-columns: 1fr;
  }
}
