@charset "UTF-8";
/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Highlight match for search */
/* Sub-menu Styles */
* {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 300ms ease;
  background-color: #ffffff;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.layout-sidebar {
  background-color: #f8fafc;
  border-right: 1px solid #e2e8f0;
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 300ms ease;
  border-right: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.layout-sidebar-header {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.layout-nav-item.active::before {
  background-color: #4f46e5;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #4f46e5;
}
.layout-nav-item.active {
  color: #4f46e5;
  font-weight: 500;
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.highlight-match {
  background-color: #fbbf24;
  font-weight: bold;
  border-radius: 2px;
  padding: 0 2px;
}

a {
  color: #4f46e5;
  text-decoration: none;
  transition: all 300ms ease;
}
a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

code {
  font-family: "Fira Code", "Consolas", "Monaco", monospace;
  font-size: 0.9em;
}

pre {
  font-family: "Fira Code", "Consolas", "Monaco", monospace;
  font-size: 0.9em;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1000;
  transition: all 300ms ease;
  border-bottom: 1px solid #e2e8f0;
  background-color: #ffffff;
}

.layout-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

.layout-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  color: #0f172a;
}
.layout-logo i {
  font-size: 32px;
}
.layout-logo:hover {
  text-decoration: none !important;
}

.layout-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layout-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 300ms ease;
  color: #64748b;
}
.layout-theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.layout-language-switcher {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 300ms ease;
  color: #64748b;
}
.layout-language-switcher:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.layout-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.layout-search-container {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

.layout-search-input {
  width: 100%;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  background-color: #f8fafc;
  color: #0f172a;
}

.layout-container {
  display: flex;
  min-height: 100vh;
  padding-top: 64px;
}

.layout-sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.layout-sidebar-content {
  padding: 16px 0;
}

.layout-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 300ms ease;
  position: relative;
  color: #64748b;
}
.layout-nav-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #0f172a;
}

.layout-nav-icon {
  font-size: 18px;
  min-width: 24px;
  text-align: center;
}

.layout-content {
  flex: 1;
  margin-left: 280px;
  padding: 48px 32px;
  min-height: calc(100vh - 64px);
  background-color: #ffffff;
  margin-bottom: 13rem;
}

.layout-breadcrumb {
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: #64748b;
}
.layout-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.layout-breadcrumb a {
  text-decoration: none;
  color: #64748b;
}
.layout-breadcrumb a:hover {
  color: #4f46e5;
}

.layout-breadcrumb-separator {
  margin: 0 8px;
}

.layout-breadcrumb-current {
  font-weight: 500;
  color: #4f46e5;
}

.layout-doc-content {
  max-width: 900px;
}
.layout-doc-content h1 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 16px;
  color: #0f172a;
}
.layout-doc-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.layout-doc-content h3 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.layout-doc-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #0f172a;
}
.layout-doc-content .doc-image {
  width: 50%;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin: 24px auto;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.layout-doc-content .doc-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.layout-doc-content .doc-image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.layout-doc-content .doc-image img:hover {
  transform: scale(1.02);
}
.layout-doc-content .doc-image .doc-image-caption {
  padding: 14px 18px;
  font-size: 14px;
  color: #6b7280;
  border-top: 1px solid #f1f1f1;
  background: #fafafa;
}
.layout-doc-content .doc-note {
  padding: 16px 18px;
  border-radius: 12px;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  margin: 20px 0;
}
.layout-doc-content .doc-warning {
  padding: 16px 18px;
  border-radius: 12px;
  margin: 20px 0;
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}

.layout-code-block {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  overflow-x: auto;
}
.layout-code-block code {
  color: #d4d4d4;
  font-family: "Fira Code", monospace;
  font-size: 14px;
  line-height: 1.6;
}

.layout-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.layout-code-language {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #888;
}

.layout-copy-btn {
  background: none;
  border: 1px solid #555;
  color: #888;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 300ms ease;
}
.layout-copy-btn:hover {
  background-color: #333;
  color: white;
}

.layout-doc-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.layout-doc-table th {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  background-color: rgba(0, 0, 0, 0.03);
  font-weight: 600;
}
.layout-doc-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.layout-callout {
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.layout-callout.info {
  background-color: rgba(79, 70, 229, 0.1);
  border-left: 4px solid #4f46e5;
}

.layout-callout.warning {
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
}

.layout-callout.success {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
}

.layout-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.layout-copyright {
  font-size: 0.9rem;
  color: #64748b;
}

.layout-footer-links {
  display: flex;
  gap: 24px;
}
.layout-footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #64748b;
}
.layout-footer-links a:hover {
  color: #4f46e5;
}

.layout-sidebar-search {
  padding: 12px 16px;
  position: relative;
}

.layout-sidebar-search-input {
  width: 100%;
  padding: 8px 12px;
  padding-left: 36px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  background-color: #f8fafc;
  color: #0f172a;
}

.layout-sidebar-search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.layout-nav-wrapper {
  position: relative;
}

.layout-sub-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 12px 16px;
  background: none;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 300ms ease;
  position: relative;
  color: #64748b;
  gap: 12px;
}
.layout-sub-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #0f172a;
}
.layout-sub-menu-toggle::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 200ms ease;
  margin-left: auto;
}

.layout-sub-menu-toggle.expanded::after {
  transform: rotate(-180deg);
}

.layout-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.layout-sub-menu.show {
  max-height: 500px;
}

.layout-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  padding-left: 40px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 300ms ease;
  position: relative;
  margin: 0;
  border-left: 2px solid transparent;
  color: #64748b;
}
.layout-sub-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #0f172a;
  border-left-color: #4f46e5;
}

.layout-sub-item.active {
  color: #4f46e5;
  font-weight: 500;
  border-left-color: #4f46e5;
  background-color: rgba(79, 70, 229, 0.05);
}

/* TOC */
.page-toc {
  position: fixed;
  top: 100px;
  right: 50px;
}
.page-toc h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #999;
  font-weight: 600;
}
.page-toc nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid #eaeaea;
}
.page-toc a {
  position: relative;
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
  padding-left: 14px;
}
.page-toc a:hover {
  color: #111;
}
.page-toc a.active {
  color: #111;
  font-weight: 600;
  border-left: 2px solid #111;
}

/* =========================
   Image Preview Modal
========================= */
.image-preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
}
.image-preview-modal.show {
  opacity: 1;
  visibility: visible;
}
.image-preview-modal.show img {
  transform: scale(1);
}
.image-preview-modal img {
  max-width: 95%;
  max-height: 95vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.tab-pane {
  border: 1px solid #f5f5f5;
  padding: 20px;
  border-radius: 20px;
}

.layout-doc-table-container {
  overflow-x: auto;
}

.layout-doc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}
.layout-doc-table thead {
  background: linear-gradient(135deg, #1e293b, #334155);
}
.layout-doc-table thead th {
  color: white;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
}
.layout-doc-table tbody tr {
  transition: all 0.25s ease;
  border-bottom: 1px solid #edf2f7;
}
.layout-doc-table tbody tr:hover {
  background: #f8fafc;
  transform: translateX(4px);
}
.layout-doc-table tbody tr:last-child td {
  border-bottom: none;
}
.layout-doc-table tbody td {
  padding: 15px 24px;
  vertical-align: middle;
  border-bottom: 1px solid #edf2f7;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}
.layout-doc-table tbody td:first-child {
  max-width: 320px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
}

.status-flow {
  position: relative;
  margin: 2rem 0;
}
.status-flow::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #8ab4ff, #0046c2);
  height: 90%;
}
.status-flow .status-step {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.status-flow .status-step:last-child {
  margin-bottom: 0;
}
.status-flow .status-step .status-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #000);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}
.status-flow .status-step .status-icon i {
  font-size: 28px;
}
.status-flow .status-step .status-content {
  flex: 1;
  background: white;
  border-radius: 18px;
  padding: 22px 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.status-flow .status-step .status-content:hover {
  transform: translateY(-4px);
}
.status-flow .status-step .status-content h4 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.status-flow .status-step .status-content p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.nav-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
  overflow-x: scroll !important;
  overflow-y: hidden;
  gap: 8px;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #4f46e5 transparent;
}
.nav-tabs .nav-item {
  flex: 0 0 auto;
}
.nav-tabs .nav-link {
  white-space: nowrap;
}
.nav-tabs {
  /* Chrome, Edge, Safari */
}
.nav-tabs::-webkit-scrollbar {
  height: 8px;
}
.nav-tabs::-webkit-scrollbar-track {
  background: transparent;
}
.nav-tabs::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 999px;
}
.nav-tabs::-webkit-scrollbar-thumb:hover {
  background: #4338ca;
}

.nav-tabs {
  overflow-x: scroll !important;
  overflow-y: hidden;
}
.nav-tabs::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 10px;
  display: block;
}
.nav-tabs::-webkit-scrollbar-track {
  background: #e5e7eb;
}
.nav-tabs::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 10px;
}/*# sourceMappingURL=main.css.map */