:root {
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --secondary-color: #f3f4f6;
  --text-color: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --card-bg: #ffffff;
  --body-bg: #f9fafb;
  --sidebar-width: 280px;
  --header-height: 70px;
  --sidebar-bg: #ffffff;
  --right-sidebar-width: 280px;
}

[data-theme="dark"] {
  --primary-color: #818cf8;
  --primary-hover: #6366f1;
  --secondary-color: #1f2937;
  --text-color: #f9fafb;
  --text-muted: #9ca3af;
  --border-color: #374151;
  --card-bg: #1f2937;
  --body-bg: #111827;
  --sidebar-bg: #1f2937;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  transition: background-color 0.3s, color 0.3s;
}

/* Header Styles */
.header {
  background-color: var(--card-bg);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  height: 100%;
  padding: 0 1rem;
}

.navbar-brand {
  font-size: 1.25rem;
  color: var(--text-color);
}

.search-container {
  width: 300px;
}

.search-container .form-control,
.search-container .input-group-text {
  border-color: var(--border-color);
  color: var(--text-color);
  background-color: var(--card-bg);
}

.search-container .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.theme-toggle {
  color: var(--text-color);
  padding: 0.25rem;
  font-size: 1.25rem;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: var(--sidebar-width);
  overflow-y: auto;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  transition: transform 0.3s;
  z-index: 1020;
}

.sidebar-sticky {
  position: sticky;
  top: 0;
  height: calc(100vh - var(--header-height));
  padding: 1.5rem;
  overflow-y: auto;
}

.nav-section {
  margin-bottom: 1.5rem;
}

.nav-section-header {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-section-header i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text-color);
  background-color: var(--secondary-color);
}

.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(99, 102, 241, 0.1);
  font-weight: 500;
}

.nav-link i {
  margin-right: 0.5rem;
}

/* Main Content Styles */
.main-content {
  margin-left: var(--sidebar-width);
  margin-right: var(--right-sidebar-width);
  padding: 2rem;
}

.content-header {
  margin-bottom: 2rem;
}

.content-header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.content-body {
  color: var(--text-color);
}

.content-body h2 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--card-bg);
  transition: all 0.3s;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Right Sidebar Styles */
.right-sidebar {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: var(--right-sidebar-width);
  overflow-y: auto;
  background-color: var(--sidebar-bg);
  border-left: 1px solid var(--border-color);
  z-index: 1010;
}

.right-sidebar-sticky {
  position: sticky;
  top: 0;
  height: calc(100vh - var(--header-height));
  padding: 1.5rem;
  overflow-y: auto;
}

.right-sidebar-section {
  margin-bottom: 2rem;
}

.right-sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

#toc .nav-link {
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.important-links li {
  margin-bottom: 0.5rem;
}

.important-links a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.important-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.important-links i {
  color: var(--primary-color);
}

/* Footer Styles */
.footer {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer a {
  color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .content-header h1 {
    font-size: 1.75rem;
  }

  .main-content {
    padding: 1.5rem;
  }
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.code-container {
  position: relative;
}

.code-container:hover .copy-btn {
  opacity: 1;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-card {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  background-color: #fff;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
  padding-left: 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checklist-item i {
  color: #10b981;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checklist-item .content {
  flex-grow: 1;
}

.checklist-item h5 {
  margin-bottom: 0.25rem;
}

.checklist-item p {
  margin-bottom: 0.5rem;
  color: #6c757d;
}

[data-theme="dark"] .code-block {
  background-color: #2d3748;
  border-color: #4a5568;
  color: #e2e8f0;
}

[data-theme="dark"] .step-card {
  background-color: #1a202c;
  border-color: #4a5568;
}

.shortcode-section {
  margin-bottom: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-header {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.section-title i {
  font-size: 1.5rem;
  color: #4f46e5;
}

.section-badge {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.shortcode-item:last-child {
  border-bottom: none;
}

.shortcode-header {
  display: flex;
  align-items: center;
  /* justify-content: between; */
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.shortcode-name {
  font-weight: 600;
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0;
}

.shortcode-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.tag.primary {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-color: #93c5fd;
}

.tag.success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  border-color: #86efac;
}

.tag.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-color: #fcd34d;
}

.shortcode-description {
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.code-container {
  position: relative;
  margin-bottom: 24px;
}

.code-block {
  border-radius: 12px;
  padding: 24px;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.875rem;
  position: relative;
  border: 1px solid #475569;
  overflow-x: auto;
  line-height: 1.6;
}

.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #f59e0b 33%,
    #22c55e 66%,
    #3b82f6 100%
  );
  border-radius: 12px 12px 0 0;
}

.code-block::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #22c55e;
}

.code-content {
  margin-top: 40px;
}

.copy-btn {
  position: absolute;
  top: 50px;
  right: 16px;
  background: rgb(27 27 27);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.copy-btn:hover {
  transform: translateY(-1px);
}

.preview-container {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  position: relative;
}

.preview-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #f8fafc;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-button {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  color: white;
}

.demo-button.download {
  background: #16a34a; //linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.demo-button.buy {
  background: #d97706; //linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.demo-button.custom {
  background: #7c3aed; //linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.alert-demo {
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-demo.success {
  background: #dcfce7;
  border-color: #22c55e;
  color: #166534;
}

.alert-demo.warning {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

.alert-demo.error {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}

.alert-demo.info {
  background: #dbeafe;
  border-color: #3b82f6;
  color: #1e40af;
}

.blockquote-demo {
  margin: 30px 0;
  padding: 20px 30px;
  background-color: #f9f9f9;
  border-left: 4px solid  #4f46e5;
  font-style: italic;
  color: #555;
}

/* .blockquote-demo::before {
  content: '"';
  font-size: 4rem;
  color: #4f46e5;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
} */

.blockquote-author {
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
}

.blockquote-author::before {
  content: "— ";
}

.sidebar-section {
  margin-bottom: 32px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.sidebar-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title::before {
  content: "";
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 2px;
}

.shortcode-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.shortcode-link:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  transform: translateX(4px);
}

.shortcode-link i {
  margin-right: 8px;
  width: 16px;
  font-size: 0.875rem;
}

.floating-action {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
}

.fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.fab:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5);
}

/* [data-theme="dark"] .sidebar-nav,
      [data-theme="dark"] .right-sidebar {
          background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
      } */

[data-theme="dark"] .shortcode-section {
  background: #1e293b;
  border-color: #475569;
}

[data-theme="dark"] .content-body {
  background: #0f172a;
}

.shortcode-section h2 {
  border: none;
  margin: 0 !important;
}

.section-card {
  background: white;
  border-radius: 16px;
  margin-bottom: 32px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s ease;
}

/* .section-card:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      } */


.section-header i {
  font-size: 1.5rem;
  color: #4f46e5;
}

.section-header h2 {
  font-size: 1.125rem;
  border: 0;
}

.section-content {
  padding: 32px;
}

.step-container {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-content {
  background: #fafbfc;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.step-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.6;
}

.download-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.3;
}

.download-section > * {
  position: relative;
  z-index: 1;
}

.download-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
.download-item {
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
.download-item .small {
   margin-top: 8px;
}
.download-item .btn-light {
  margin-top: 12px;
}
}


.download-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* .blogger-screenshot {
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
          margin: 24px 0;
          transition: all 0.3s ease;
          cursor: pointer;
          border: 3px solid #e2e8f0;
      }
      
      .blogger-screenshot:hover {
          transform: scale(1.02);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
          border-color: #4f46e5;
      } */

.blogger-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.info-box {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.info-box.success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #86efac;
}

.info-box.success::before {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.info-box.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #fcd34d;
}

.info-box.warning::before {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.info-box.error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-color: #fca5a5;
}

.info-box.error::before {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.info-icon {
  font-size: 24px;
  margin-top: 2px;
  color: #3b82f6;
}

.info-box.success .info-icon {
  color: #22c55e;
}

.info-box.warning .info-icon {
  color: #f59e0b;
}

.info-box.error .info-icon {
  color: #ef4444;
}
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.shortcode-dropcaps {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.shortcode-dropcaps .dropcaps {
  float: left;
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  margin-right: 0.5rem;
  color: #333;
}

.shortcode-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.shortcode-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.shortcode-table th,
.shortcode-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  white-space: nowrap;
}

.shortcode-table th {
  background-color: #f2f2f2;
}

.toc-container {
width: 300px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.toc-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
background-color: #f9f9f9;
border-bottom: 1px solid #eee;
font-weight: bold;
font-size: 14px;
cursor: pointer;
}
.toggle-btn {
background: none;
border: none;
cursor: pointer;
color: #555;
display: block;
}
.toc-content {
display: none;
padding: 10px 0;
}
.toc-list {
list-style-position: inside;
padding-left: 15px;
padding-right: 15px;
}
.toc-container ol.toc-list {
margin: 5px 0px !important;
}
.toc-list ol {
margin: 5px 0px !important;
padding-left: 20px;
}
.toc-list li {
margin-bottom: 10px;
font-size: 14px;
}
.toc-list a {
text-decoration: none;
color: #333;
}
.toc-list a:hover {
color: #0066cc;
}

.post-code-block {
    margin: 30px 0;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: auto;
    padding: 20px;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #232233;
}


.note-box {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #0d6efd;
  margin-top: 1.5rem;
  font-family: sans-serif;
}

.note-box h3 {
  margin-top: 0;
}

.note-box code {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.example-button {
  background-color: #22c55e;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}


.note-box ol li {
  margin-bottom: 15px;
}

.small-logo-light {
 display: none;
}

.logo-light {
   margin-right: 6px; 
}

@media (max-width: 767px) {
 .logo-light {
    display: none;
 }
 .small-logo-light {
  display: block;
  margin-right: 10px;
 }
}