body,
html {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.3px;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  overflow: hidden;
}

p {
  font-size: 14px;
  font-weight: 500;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footerDrawer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px; /* collapsed height */
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(270px); /* initially collapsed */
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
}

#drawerContent {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

#drawerBar {
  transition: opacity 0.35s ease-in-out;
  opacity: 1.0;
  &.open {
    opacity: 0.0;
  }
}
