body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  }
  
  .method-badge {
    font-weight: 600;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
  }
  
  .method-get {
    background-color: #4339ca; /* Blue color for GET badge */
    color: white;
  }
  
  @media (max-width: 640px) {
    .endpoint-container {
        position: relative;
        padding: 1rem;
        background-color: #f8fafc;
        border-radius: 0.5rem;
    }
    
    .dark .endpoint-container {
        background-color: #1e293b;
    }
    
    .endpoint-container .method-badge {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        margin: 0;
    }
    
    .endpoint-container .endpoint-url {
        width: 100%;
        padding-top: 2rem;
        padding-bottom: 0.5rem;
        overflow-x: auto;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        font-size: 0.875rem;
        color: #334155;
    }
    
    .dark .endpoint-container .endpoint-url {
        color: #cbd5e1;
    }
    
    .endpoint-container .copy-btn {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        margin: 0;
    }
  }
  
  section {
    scroll-margin-top: 5rem;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: #4339ca;
    z-index: 100;
    transition: width 0.2s ease;
  }
  
  .dropdown-content {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  
  .dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  
  pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  

  table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
  }
  
  th, td {
    border: 1px solid;
  }
  
  th:first-child {
    border-top-left-radius: 0.5rem;
  }
  
  th:last-child {
    border-top-right-radius: 0.5rem;
  }
  
  tr:last-child td:first-child {
    border-bottom-left-radius: 0.5rem;
  }
  
  tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
  }
  
  body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  .sidebar {
    width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: white;
    z-index: 60;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
  }
  
  .dark .sidebar {
    background-color: #0f172a;
    border-right: 1px solid #1e293b;
  }
  
  .sidebar-header {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
  }
  
  .dark .sidebar-header {
    background-color: #0f172a;
    border-bottom-color: #1e293b;
  }
  
  .sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(203, 213, 225, 0.5) transparent;
  }
  
  .sidebar-content::-webkit-scrollbar {
    width: 4px;
  }
  
  .sidebar-content::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .sidebar-content::-webkit-scrollbar-thumb {
    background-color: rgba(203, 213, 225, 0.5);
    border-radius: 4px;
  }
  
  .dark .sidebar-content::-webkit-scrollbar-thumb {
    background-color: rgba(51, 65, 85, 0.5);
  }
  
  .sidebar-nav-group {
    margin-bottom: 1.5rem;
  }
  
  .sidebar-nav-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .dark .sidebar-nav-group-title {
    color: #94a3b8;
  }
  
  .sidebar-nav-group-title i {
    color: #4339ca;
  }
  
  .dark .sidebar-nav-group-title i {
    color: #818cf8;
  }
  
  .sidebar-nav-links {
    margin-top: 0.5rem;
  }
  
  .sidebar-nav-link {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    color: #475569;
    font-size: 0.875rem;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
  }
  
  .dark .sidebar-nav-link {
    color: #cbd5e1;
  }
  
  .sidebar-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: transparent;
    transition: background-color 0.15s ease;
  }
  
  .sidebar-nav-link:hover {
    background-color: #f1f5f9;
    color: #0f172a;
  }
  
  .dark .sidebar-nav-link:hover {
    background-color: #1e293b;
    color: #f8fafc;
  }
  
  .sidebar-nav-link:hover::before {
    background-color: #4339ca;
  }
  
  .dark .sidebar-nav-link:hover::before {
    background-color: #818cf8;
  }
  
  .sidebar-nav-link.active {
    background-color: #ede9fe;
    color: #4339ca;
    font-weight: 500;
  }
  
  .sidebar-nav-link.active::before {
    background-color: #4339ca;
  }
  
  .dark .sidebar-nav-link.active {
    background-color: #312e81;
    color: #a5b4fc;
  }
  
  .dark .sidebar-nav-link.active::before {
    background-color: #818cf8;
  }
  
  .sidebar-nav-link i {
    display: none; /* Hide the icons */
  }
  
  .dark .sidebar-nav-link i {
    color: #94a3b8;
  }
  
  .dark .sidebar-nav-link:hover i,
  .dark .sidebar-nav-link.active i {
    color: #818cf8;
  }
  
  @media (max-width: 1023px) {
    .sidebar {
      transform: translateX(-100%);
      width: 100%;
      max-width: 280px;
    }
    
    .sidebar.mobile-open {
      transform: translateX(0);
      display: flex;
    }
  }
  
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 55;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .sidebar-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .logo-light {
    display: block;
  }
  
  .logo-dark {
    display: none;
  }
  
  .dark .logo-light {
    display: none;
  }
  
  .dark .logo-dark {
    display: block;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%; /* Full width header */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 64px; /* Fixed height for header */
  }
  
  header > div {
    background-color: white !important; /* White background */
    background-image: none !important; /* Remove gradient */
    border-bottom: 1px solid #e2e8f0;
    height: 100%; /* Full height */
  }
  
  .dark header > div {
    background-color: #0f172a !important; /* Dark mode background */
    border-bottom: 1px solid #1e293b;
  }
  
  header h1 {
    color: #1e293b !important; /* Dark text for better contrast on white */
    font-weight: 700 !important;
    position: relative;
  }
  
  .dark header h1 {
    color: #f8fafc !important; /* Light text for dark mode */
  }
  
  header h1:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #4339ca; /* Accent color */
    border-radius: 2px;
  }
  
  header .h-8.w-8 {
    background-color: #4339ca !important; /* Blue background for icon */
  }
  
  header .h-8.w-8 i {
    color: white !important; 
  }
  
  header #mobile-menu-btn {
    background-color: #f1f5f9 !important; 
    color: #1e293b !important; 
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
  }
  
  header #mobile-menu-btn:hover {
    background-color: #e2e8f0 !important;
  }
  
  .dark header #mobile-menu-btn {
    background-color: #1e293b !important; 
    color: #f8fafc !important; 
    border-color: #334155;
  }
  
  .dark header #mobile-menu-btn:hover {
    background-color: #334155 !important;
  }
  
  header #theme-toggle {
    background-color: #f1f5f9 !important; 
    color: #1e293b !important; 
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
  }
  
  header #theme-toggle:hover {
    background-color: #e2e8f0 !important;
  }
  
  .dark header #theme-toggle {
    background-color: #1e293b !important; 
    color: #f8fafc !important; 
    border-color: #334155;
  }
  
  .dark header #theme-toggle:hover {
    background-color: #334155 !important;
  }
  
  @media (min-width: 1024px) {
    .sidebar {
        display: flex;
    }
    
    .main-content {
        margin-left: 280px;
    }
    
    .nav-dropdown {
        display: none;
    }
  }
  
  .main-content {
    transition: margin-left 0.3s ease;
  }
  
  .checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  
  .checklist-item i {
    color: #4339ca;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
  }
  
  .dark .checklist-item i {
    color: #818cf8;
  }
  
  .mobile-menu-button {
    display: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 1023px) {
    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
  }
  
  footer {
    background-color: #1a2238; /* Dark navy blue color from the image */
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
  }
  
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  footer .footer-logo {
    margin-bottom: 1.5rem;
  }
  
  footer .footer-logo img {
    height: 2.5rem;
  }
  
  footer .footer-title {
    margin-bottom: 0.75rem;
  }
  
  footer .footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
  }
  
  @media (min-width: 768px) {
    footer .container {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    
    footer .footer-logo {
      margin-bottom: 0;
    }
    
    footer .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    
    footer .footer-title {
      margin-bottom: 0.5rem;
    }
  }