/* [project]/src/app/globals.css [app-client] (css) */
body {
  background: #f6f5fa;
  margin: 0;
  font-family: Inter, sans-serif;
}

body.dark {
  color: #fff;
  background: #1e1e1e;
}

.header {
  align-items: center;
  gap: 32px;
  height: 72px;
  padding: 0 32px;
  display: flex;
}

.logo .cube {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

.nav {
  border-radius: 999px;
  gap: 12px;
  margin-right: auto;
  padding: 6px;
  display: flex;
}

.nav.light {
  color: #555;
  background: #eceaf3;
}

.nav.dark {
  color: #fff;
  background: #2b2b2b;
}

.nav-item {
  color: #555;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.nav-item.active {
  color: #4c3fb1;
  background: #dcd6f7;
}

.profile {
  border-radius: 12px;
  padding: 8px 16px;
}

.profile.light {
  color: #555;
  background: #eceaf3;
}

.profile.dark {
  color: #4c3fb1;
  background: #dcd6f7;
}

.right {
  align-items: center;
  gap: 10px;
  margin-left: auto;
  display: flex;
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
}

.btn.primary {
  color: #4c3fb1;
  background: #dcd6f7;
}

.btn.ghost {
  background: none;
  border: 1px solid #ccc;
}

.profile {
  align-items: center;
  gap: 10px;
  display: flex;
}

.avatar {
  background: #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.theme {
  background: #eceaf3;
  border-radius: 999px;
  padding: 4px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.theme button {
  background: none;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
}

.theme .active {
  background: #dcd6f7;
}

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