/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --sidebar-width: 250px;
  --header-height: 60px;
  --bg-color: #0d1117;
  --text-color: #c9d1d9;
  --sidebar-bg-color: #161b22;
  --border-color: #30363d;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.container {
  width: 100vw;
  height: 100%;
  display: flex;
}

.sidebar {
  width: var(--sidebar-width);
  background-color: var(--sidebar-bg-color);
  border-right: 1px solid var(--border-color);
  height: 100%;
  padding: 20px;
  overflow-y: auto;
}

.main {
  flex: 1;
  width: 100%;
  padding: 0 2rem;
  overflow-y: auto;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--sidebar-bg-color);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--sidebar-bg-color);
  background-color: #555;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

@media (max-width: 768px) {
  .desktop-sidebar-container {
    display: none;
  }

  .mobile-sidebar-container {
    display: block;
  }
}

/* [project]/src/components/Header.module.css [app-client] (css) */
.Header-module__hBw1pG__header {
  height: var(--header-height);
  background-color: var(--sidebar-bg-color);
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  display: flex;
}

.Header-module__hBw1pG__left {
  align-items: center;
  display: flex;
}

.Header-module__hBw1pG__right {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Header-module__hBw1pG__titleContainer {
  align-items: center;
  gap: 8px;
  margin-right: 24px;
  text-decoration: none;
  display: flex;
}

.Header-module__hBw1pG__title {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.Header-module__hBw1pG__wikiSelector select {
  color: var(--text-color);
  border: 1px solid var(--border-color);
  background-color: #21262d;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
}

.Header-module__hBw1pG__hamburger {
  cursor: pointer;
  background: none;
  border: none;
  margin-right: 16px;
  padding: 0;
  display: none;
}

.Header-module__hBw1pG__sidebarWrapper {
  display: none;
}

@media (max-width: 768px) {
  .Header-module__hBw1pG__hamburger {
    display: block;
  }

  .Header-module__hBw1pG__sidebarWrapper {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg-color);
    z-index: 1000;
    border-right: 1px solid var(--border-color);
    height: 100%;
    transition: left .3s ease-in-out;
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
  }

  .Header-module__hBw1pG__sidebarWrapper.Header-module__hBw1pG__open {
    left: 0;
  }

  .Header-module__hBw1pG__sidebarHeader {
    justify-content: flex-end;
    padding: 10px;
    display: flex;
  }

  .Header-module__hBw1pG__closeButton {
    color: var(--text-color);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
  }

  .Header-module__hBw1pG__backdrop {
    z-index: 999;
    background-color: #00000080;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}

/*# sourceMappingURL=src_31592788._.css.map*/