/* customize section-resizer separator */

.sr-separator {
  width: 1px;
  height: 1px;
  background-color: rgba(102, 173, 255, 0.1);
  transition: background-color 250ms ease-in-out;
}

.sr-separator-highlight {
  width: 2px;
  height: 2px;
  background-color: rgb(102, 173, 255);
}

/* other css unrelated to section-resizer */

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

button {
  border: 1px solid grey;
  padding: 0.25rem;
  background-color: transparent;
  font-size: 1rem;
  cursor: pointer;
}

button:hover,
button:focus {
  background-color: rgb(48, 48, 48);
}

h1 {
  margin: 0;
}

body {
  margin: 0;
  background-color: hsl(210, 10%, 10%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 1rem;
  height: 4rem;
}

.main {
  background-color: hsl(210, 10%, 12.5%);
  flex-grow: 1;
  display: grid;
  grid-template-columns: 50px auto;
}

#main-sidebar {
  background-color: hsl(210, 10%, 15%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}

#content {
  overflow: auto;
  height: calc(100vh - 4rem);
}

.child {
  overflow: auto;
  padding: 1rem;
}
