/* Global Styles */

p {
  margin: 0;
}

body,
.addSidebar {
  background-color: rgb(60, 60, 60);
  color: white;
}

body {
  padding: 80px 200px 0px 200px;
  font-family: system-ui, sans-serif;
  transition: 0.2s;
}

@media (max-width: 1000px) {
  body { padding: 80px 20px; }
}

.addSidebar {
  padding: 80px 20px 20px 220px;
  font-family: Roboto, Arial;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

/* Header Styles */

#header-get {
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(40, 40, 40);
  z-index: 1;
}

/* shared button styles */
.home-button {
  position: absolute;
  top: 5px;
  margin: 10px;
  height: 60%;
  background-color: rgb(60, 60, 60);
  border: 0;
  border-radius: 6px;
  color: white;
  right: 5px;
  font-size: 18px;
}

#left-button-container {
  left: 5px;
  position: absolute;
  top: 5px;
  margin: 10px;
  height: 60%;
  display: flex;
  flex-direction: row;
}

#goBackBtn {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 10px;
  height: 60%;
  background-color: rgb(60, 60, 60);
  border: 0;
  border-radius: 6px;
  color: white; 
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: rgb(40, 40, 40);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(70, 70, 70);
  border-radius: 4px;
}