/* [project]/src/app/docs/docs.css [app-client] (css) */
:root {
  --color-navy: #222d43;
  --color-teal: #429e92;
  --color-slate: #586379;
  --color-gold: #dfba90;
  --color-white: #fff;
  --color-light-gray: #f8f9fa;
  --color-border: #e0e4e8;
}

.docs-container {
  background-color: var(--color-white);
  min-height: 100vh;
  color: var(--color-slate);
  flex-direction: column;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  display: flex;
}

.docs-header {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-bottom: 2px solid var(--color-teal);
  padding: 1.5rem 2rem;
}

.docs-header-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.docs-logo {
  color: var(--color-white);
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.docs-logo:hover {
  color: var(--color-gold);
}

.docs-header-nav a {
  color: var(--color-white);
  border-radius: 4px;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.docs-header-nav a:hover {
  background-color: var(--color-teal);
}

.docs-wrapper {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.docs-sidebar {
  background-color: var(--color-light-gray);
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
  width: 280px;
  height: calc(100vh - 70px);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.docs-nav {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.docs-nav-section {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.docs-nav-title {
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid var(--color-teal);
  margin: 0;
  padding: .5rem 0 .75rem;
  font-size: .875rem;
  font-weight: 700;
}

.docs-nav-list {
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.docs-nav-link {
  color: var(--color-slate);
  border-left: 3px solid #0000;
  border-radius: 4px;
  padding: .5rem .75rem;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.docs-nav-link:hover {
  color: var(--color-teal);
  border-left-color: var(--color-teal);
  background-color: #429e9214;
}

.docs-nav-link.active {
  color: var(--color-teal);
  border-left-color: var(--color-teal);
  background-color: #429e9226;
  font-weight: 600;
}

.docs-main {
  flex: 1;
  padding: 2rem;
  overflow-x: hidden;
}

.docs-breadcrumb {
  color: var(--color-slate);
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: .9rem;
  display: flex;
}

.breadcrumb-link {
  color: var(--color-teal);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-link:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--color-slate);
}

.docs-content {
  max-width: 800px;
}

.docs-content h1 {
  color: var(--color-navy);
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.docs-content h2 {
  color: var(--color-navy);
  border-top: 2px solid var(--color-gold);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.docs-content h3 {
  color: var(--color-navy);
  margin: 1.5rem 0 .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.docs-content h4, .docs-content h5, .docs-content h6 {
  color: var(--color-navy);
  margin: 1.25rem 0 .75rem;
  font-weight: 700;
}

.docs-content p {
  margin: 0 0 1rem;
  font-size: .95rem;
  line-height: 1.7;
}

.docs-content a {
  color: var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  text-decoration: none;
  transition: all .2s;
}

.docs-content a:hover {
  color: var(--color-navy);
  background-color: #429e921a;
}

.docs-content ul, .docs-content ol {
  margin: 0 0 1rem 1.5rem;
  line-height: 1.8;
}

.docs-content li {
  margin: .5rem 0;
}

.docs-content code {
  background-color: var(--color-light-gray);
  color: var(--color-navy);
  border-radius: 3px;
  padding: .2rem .5rem;
  font-family: Courier New, monospace;
  font-size: .9rem;
}

.docs-content pre {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: 6px;
  margin: 1rem 0;
  padding: 1rem;
  line-height: 1.5;
  overflow-x: auto;
}

.docs-content pre code {
  color: inherit;
  background-color: #0000;
  padding: 0;
  font-size: .85rem;
}

.docs-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: .9rem;
}

.docs-content th, .docs-content td {
  border: 1px solid var(--color-border);
  text-align: left;
  padding: .75rem;
}

.docs-content th {
  background-color: var(--color-light-gray);
  color: var(--color-navy);
  font-weight: 700;
}

.docs-content blockquote {
  border-left: 4px solid var(--color-teal);
  color: var(--color-slate);
  margin: 1rem 0;
  padding-left: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .docs-wrapper {
    flex-direction: column;
  }

  .docs-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    height: auto;
    padding: 1.5rem;
    position: relative;
    top: auto;
  }

  .docs-nav {
    gap: 1.5rem;
  }

  .docs-main {
    padding: 1.5rem;
  }

  .docs-content h1 {
    font-size: 2rem;
  }

  .docs-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .docs-header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .docs-logo {
    font-size: 1.25rem;
  }

  .docs-main {
    padding: 1rem;
  }

  .docs-content h1 {
    font-size: 1.5rem;
  }

  .docs-content h2 {
    font-size: 1.25rem;
  }
}

.docs-sidebar::-webkit-scrollbar {
  width: 6px;
}

.docs-sidebar::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

.docs-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-teal);
  border-radius: 3px;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

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