@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);
  -webkit-backdrop-filter: blur(15px);
          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(0, 100, 165, 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: #0064A5;
  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(0, 100, 165, 0.08);
  color: #0064A5;
  transform: translateX(6px);
}
#sidebar-nav .li-gm .nav-link-gm.active {
  background: #0064A5;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 100, 165, 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;
}

.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: #0064A5;
  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: #0064A5;
  color: white !important;
  border-color: #0064A5;
  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: #0064A5;
  border-radius: 2px;
}

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

.nav-link-gm.active-gm {
  background: #0064A5 !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(0, 100, 165, 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;
}/*# sourceMappingURL=main-pl.css.map */