/* [project]/src/styles/Navbar.module.css [client] (css) */
.Navbar-module__P48_Aa__navbar {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  width: 100%;
  position: sticky;
  top: 0;
}

.Navbar-module__P48_Aa__navContainer {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  min-height: 72px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  position: relative;
}

.Navbar-module__P48_Aa__logo {
  color: var(--primary-color);
  letter-spacing: 0;
  flex: none;
  font-size: 1.5rem;
  font-weight: 800;
}

.Navbar-module__P48_Aa__desktopNav {
  display: none;
}

.Navbar-module__P48_Aa__mobileNav {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.Navbar-module__P48_Aa__menuButton {
  border: 1px solid var(--glass-border);
  background: var(--control-bg);
  width: 44px;
  height: 44px;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background-color .2s, border-color .2s, transform .2s;
  display: inline-flex;
}

.Navbar-module__P48_Aa__themeButton {
  border: 1px solid var(--glass-border);
  background: var(--control-bg);
  width: 44px;
  height: 44px;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: background-color .2s, border-color .2s, transform .2s;
  display: inline-flex;
}

.Navbar-module__P48_Aa__menuButton:hover, .Navbar-module__P48_Aa__themeButton:hover {
  background: var(--hover-bg);
  border-color: var(--primary-color);
}

.Navbar-module__P48_Aa__menuButton:active, .Navbar-module__P48_Aa__themeButton:active {
  transform: scale(.97);
}

.Navbar-module__P48_Aa__menuButton span {
  background: currentColor;
  border-radius: 2px;
  width: 20px;
  height: 2px;
}

.Navbar-module__P48_Aa__sunIcon, .Navbar-module__P48_Aa__moonIcon {
  border-radius: 999px;
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
}

.Navbar-module__P48_Aa__sunIcon {
  background: var(--primary-color);
  box-shadow: 0 -8px 0 -6px, 0 8px 0 -6px, 8px 0 0 -6px, -8px 0 0 -6px, 6px 6px 0 -6px, -6px -6px 0 -6px, 6px -6px 0 -6px, -6px 6px 0 -6px;
}

.Navbar-module__P48_Aa__moonIcon {
  background: currentColor;
}

.Navbar-module__P48_Aa__moonIcon:after {
  content: "";
  background: var(--control-bg);
  border-radius: 999px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -2px;
  right: -4px;
}

.Navbar-module__P48_Aa__mobileMenu {
  background: var(--menu-bg);
  border: 1px solid var(--glass-border);
  width: min(260px, 100vw - 2rem);
  box-shadow: 0 16px 36px var(--shadow-strong);
  border-radius: 8px;
  flex-direction: column;
  gap: .15rem;
  padding: .5rem;
  display: flex;
  position: absolute;
  top: calc(100% - .35rem);
  right: 1rem;
}

.Navbar-module__P48_Aa__mobileWelcome {
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: .25rem;
  padding: .65rem .75rem;
  font-size: .9rem;
  font-weight: 700;
}

.Navbar-module__P48_Aa__mobileMenuItem, .Navbar-module__P48_Aa__mobileLogout {
  width: 100%;
  color: var(--text-muted);
  text-align: left;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: .75rem;
  font-weight: 700;
}

.Navbar-module__P48_Aa__mobileMenuItem:hover, .Navbar-module__P48_Aa__mobileLogout:hover, .Navbar-module__P48_Aa__activeMobileMenuItem {
  color: var(--primary-color);
  background: var(--hover-bg);
}

@media (max-width: 420px) {
  .Navbar-module__P48_Aa__navContainer {
    padding: .85rem 1rem;
  }

  .Navbar-module__P48_Aa__logo {
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) {
  .Navbar-module__P48_Aa__mobileNav {
    display: none;
  }

  .Navbar-module__P48_Aa__desktopNav {
    align-items: center;
    gap: 1.5rem;
    display: flex;
  }
}

.Navbar-module__P48_Aa__navLinks {
  align-items: center;
  gap: .25rem;
  display: flex;
}

.Navbar-module__P48_Aa__navLink {
  color: var(--text-muted);
  border-radius: 8px;
  padding: .45rem .65rem;
  font-weight: 700;
}

.Navbar-module__P48_Aa__navLink:hover, .Navbar-module__P48_Aa__activeLink {
  color: var(--primary-color);
  background: var(--hover-bg);
}

.Navbar-module__P48_Aa__welcome {
  color: var(--text-muted);
  font-weight: 600;
}

/* [project]/src/styles/Card.module.css [client] (css) */
.Card-module__mt6GGa__card {
  padding: 1.5rem;
  transition: transform .3s, box-shadow .3s;
}

.Card-module__mt6GGa__clickable {
  cursor: pointer;
}

.Card-module__mt6GGa__clickable:hover {
  box-shadow: 0 10px 40px var(--shadow-soft);
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

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