@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");
body {
  background: radial-gradient(circle at top right, #fdfdff, #f8fafd);
  font-family: "Outfit", sans-serif;
  color: #444;
  min-height: 100vh;
  margin: 0;
}

.header {
  display: none !important;
}

#sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#sidebar-nav::-webkit-scrollbar {
  width: 4px;
}
#sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(1, 52, 131, 0.1);
  border-radius: 10px;
}
#sidebar-nav ul {
  padding: 0;
  margin: 1rem 0;
}
#sidebar-nav .li-gm {
  list-style: none;
  margin-bottom: 0.5rem;
}
#sidebar-nav .li-gm .nav-link-gm {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#sidebar-nav .li-gm .nav-link-gm i {
  font-size: 1.2rem;
  color: #013483;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
  text-align: center;
}
#sidebar-nav .li-gm .nav-link-gm:hover {
  background: rgba(1, 52, 131, 0.08);
  color: #013483;
  transform: translateX(6px);
}
#sidebar-nav .li-gm .nav-link-gm.active {
  background: #013483;
  color: white;
  box-shadow: 0 8px 20px rgba(1, 52, 131, 0.25);
}
#sidebar-nav .li-gm .nav-link-gm.active i {
  color: white;
}

.doc-wrapper {
  display: flex;
  min-height: 100vh;
}

.doc-content {
  flex-grow: 1;
  margin-left: 280px;
  width: calc(100% - 280px);
  padding: 4rem 5rem;
  max-width: 1400px;
  position: relative;
}
@media (max-width: 992px) {
  .doc-content {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 2rem;
  }
}

.sidebar-logo {
  padding: 0 0 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}
.sidebar-logo img {
  height: 40px;
  max-width: 180px;
  background: #013483;
  padding: 8px 14px;
  border-radius: 10px;
  box-sizing: content-box;
}

.doc-section-card {
  background: white;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01), 0 20px 60px rgba(0, 64, 165, 0.03);
  padding: 3.5rem;
  margin-bottom: 3.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.doc-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04), 0 40px 100px rgba(0, 64, 165, 0.06);
}

.transition-base {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 15px 45px rgba(0, 64, 165, 0.08) !important;
}

.card-body.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

pre {
  background: #1e2124;
  color: #e5e9ef;
  padding: 30px;
  border-radius: 18px;
  font-size: 0.95rem;
  position: relative;
  box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
pre::before {
  content: "SOURCE CODE";
  position: absolute;
  top: 0;
  right: 30px;
  background: #013483;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.5px;
}

.copy-btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e9ecef;
}
.copy-btn:hover {
  background: #013483;
  color: white !important;
  border-color: #013483;
  transform: translateY(-2px);
}

.example-source {
  background: #ffffff;
  border: 1px solid #f1f3f5;
  border-radius: 18px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.h1-gm {
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.h2-gm {
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.h2-gm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: #013483;
  border-radius: 2px;
}

.p-gm {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
}

.nav-link-gm.active-gm {
  background: #013483 !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(1, 52, 131, 0.25);
}
.nav-link-gm.active-gm i {
  color: white !important;
}

.copy-badge-temp {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #198754;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

#sidebar-nav .menu-divider {
  margin: 1.25rem 1.25rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 1rem;
}

.gm-filterbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.gm-filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 0.25rem;
}

.gm-filter {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #555;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gm-filter:hover {
  border-color: rgba(1, 52, 131, 0.4);
  color: #013483;
}
.gm-filter.is-active {
  background: #013483;
  border-color: #013483;
  color: #fff;
}

.gm-comp {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.gm-comp[hidden] {
  display: none;
}

.gm-comp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.gm-track {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.gm-track i {
  margin-right: 0.3rem;
}

.gm-track-app {
  background: rgba(1, 52, 131, 0.1);
  color: #013483;
}

.gm-track-web {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
}

.gm-comp-preview {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fbfcfe;
}
.gm-comp-preview iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  transition: height 0.2s ease;
}

.gm-comp-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}

.gm-file {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.03);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.gm-comp-code {
  margin-top: 0.875rem;
}
.gm-comp-code pre {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  max-height: 420px;
  overflow: auto;
  font-size: 0.78rem;
  line-height: 1.55;
}
.gm-comp-code code {
  color: inherit;
}

.gm-comp-note {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid #F29C2E;
  background: rgba(242, 156, 46, 0.08);
  border-radius: 0 10px 10px 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #555;
}
.gm-comp-note i {
  color: #F29C2E;
  margin-top: 0.15rem;
}
.gm-comp-note code {
  font-size: 0.78rem;
}

/*# sourceMappingURL=main-pl.css.map */
