@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: hsl(214, 28%, 5%);
  color: hsl(0, 0%, 95%);
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background: #000000;
}

.hover-focus1 {
  transition 0.15s ease-in-out;
}
.hover-focus1:hover:not(.selectedTab) {
  background-color: rgba(26, 26, 26, 0.15) !important;
}

.hover-focus2 {
  transition 0.15s ease-in-out;
}
.hover-focus2:hover:not(.selectedTab) {
  background-color: rgba(40, 40, 40, 0.25) !important;
}

.sidebar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.sidebar-container header {
  display: flex;
  width: 20vw;
  height: 99vh;
  margin: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.4rem;
  position: absolute;
  left: 0.5rem;
  transition: 0.2s ease-in-out;
}
.sidebar-container header.closed {
  background: #13101f;
  border: rgba(31, 31, 31, 0.5) 1px solid;
  position: fixed;
}
.sidebar-container header.closed:not(:hover):not(.hovered) {
  transform: translateX(-120%);
}
.sidebar-container header .page-data {
  width: 95%;
  padding: 0.3rem 0;
}
.sidebar-container header .page-data #controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-container header .page-data #controls button {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.sidebar-container header .page-data #controls button .tooltip {
  padding: 6.5px 8px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: #464141;
  color: rgba(255, 255, 255, 0.834);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s ease;
  border-radius: 5px;
  font-size: 14.5px;
}

.sidebar-container header .page-data #controls button:hover .tooltip {
  visibility: visible;
  opacity: 1;
  top: 28px;
}
.logo-name {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.sidebar-container header .page-data #controls button .icon {
  font-size: 1.2rem;
  padding: 0.4rem;
  border-radius: 6px;
}
.sidebar-container header .page-data #controls button svg {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 0.5rem;
  margin: 0;
}
.sidebar-container header .page-data #url-form {
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(247, 205, 205, 0.156);
}
.sidebar-container header .page-data #url-form input {
  background-color: rgba(226, 226, 226, 0.15);
  border: none;
  outline: none;
  color: inherit;
  font: inherit;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 0.8rem;
  width: 100%;
}
.sidebar-container header .page-data #new-tab {
  width: 100%;
  margin-top: 1rem;
  border-radius: 6px;
  background-color: rgba(226, 226, 226, 0.15);
  border: none;
  outline: none;
  color: inherit;
  font: inherit;
  padding: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-container header .page-data #new-tab .icon {
  font-size: 1.2rem;
}

@keyframes slide-in-from-top {
  0% {
    transform: translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-from-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-150%);
    opacity: 0;
  }
}

/*# sourceMappingURL=sidebar.css.map */
