.inner-box {
  box-sizing: border-box;
  width: 100%;
  max-height: 240px;
  padding: 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  background-color: var(--color-gray-50);
  overflow: scroll;
  scrollbar-color: #D6DBE7 transparent;
  scrollbar-width: thin;
  scrollbar-gutter: stable both-edges;
}

.inner-box::-webkit-scrollbar {
  width: 6px;
}

.inner-box::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #D6DBE7;
}

.inner-box::-webkit-scrollbar-track {
  background-color: transparent;
}

/* custom scrollbar */
/*
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}
 */

.inner-box__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.inner-box__header .note {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  line-height: 12px;
  width: 187px;
  letter-spacing: 0.2px;
  color: var(--color-gray-500);
}

.inner-box .heading {
  margin-bottom: 4px;
}

.inner-box .time-slot__view:not(:last-child) {
  margin-bottom: 12px;
}
