/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html, body {
  color: #111827;
  background: #f7f7fb;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  transition: grid-template-columns .2s;
  display: grid;
}

.app-shell--sidebar-open {
  grid-template-columns: 240px 1fr;
}

.app-shell--sidebar-closed {
  grid-template-columns: 0 1fr;
}

.app-shell__main {
  min-width: 0;
  padding: 20px 24px 24px;
}

.app-shell__content {
  padding-top: 12px;
}

.sidebar {
  background: #fff;
  border-right: 1px solid #e5e7eb;
  transition: transform .2s, opacity .2s, border-color .2s;
  overflow: hidden;
}

.sidebar--open {
  opacity: 1;
  transform: translateX(0);
}

.sidebar--closed {
  opacity: 0;
  border-color: #0000;
  transform: translateX(-100%);
}

.sidebar__inner {
  width: 240px;
  padding: 20px;
}

.sidebar__title {
  margin-top: 0;
}

.sidebar__nav {
  gap: 12px;
  display: grid;
}

.sidebar-toggle {
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 10px 16px;
  transition: background-color .15s, border-color .15s, box-shadow .15s;
}

.sidebar-toggle:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.sidebar-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #2563eb2e;
}

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