.elementor-29435 .elementor-element.elementor-element-ba28075{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:10px;--padding-left:15px;--padding-right:15px;}.elementor-29435 .elementor-element.elementor-element-ba28075:not(.elementor-motion-effects-element-type-background), .elementor-29435 .elementor-element.elementor-element-ba28075 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8FAFC;}@media(max-width:1024px){.elementor-29435 .elementor-element.elementor-element-ba28075{--padding-top:60px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}}@media(max-width:768px){.elementor-29435 .elementor-element.elementor-element-ba28075{--padding-top:30px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}}/* Start custom CSS for html, class: .elementor-element-0625bdc */.le-doc-page {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
}

/* Sidebar */
.le-doc-sidebar {
  flex: 0 0 220px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.le-doc-sidebar h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.le-doc-sidebar ul {
  list-style: none;
  padding: 0;
}

.le-doc-sidebar ul li {
  margin-bottom: 10px;
}

.le-doc-sidebar ul li a {
  text-decoration: none;
  color: #2563EB;
  font-size: 14px;
  transition: 0.2s;
}

.le-doc-sidebar ul li a:hover {
  text-decoration: underline;
}

/* Main content */
.le-doc-content {
  flex: 1;
  max-width: 900px;
}

.le-doc-content section {
  margin-bottom: 60px;
}

.le-doc-content h1 {
  font-size: 24px;
  margin-bottom: 12px;
}

.le-doc-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.le-doc-content ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.le-code-snippet {
  background: #f1f5f9;
  padding: 14px;
  border-radius: 10px;
  font-family: monospace;
  overflow-x: auto;
  margin-bottom: 12px;
}

.le-doc-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: 0 15px 40px rgba(15,23,42,0.06);
}

/* Mobile adjustments */
.le-doc-toggle {
  display: none;
  background: #2563EB;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .le-doc-page {
    flex-direction: column;
  }

  .le-doc-sidebar {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: #f8fafc;
    width: 80%;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 20px;
    z-index: 999;
  }

  .le-doc-toggle {
    display: block;
  }
}/* End custom CSS */