* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    margin: 0;
    padding: 0;
    position: relative;
}


.docs-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: #1a1a1a;
    color: #e5e5e5;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    padding: 0;
    z-index: 100;
}

.sidebar-header {
    padding: 0 24px;
    border-bottom: 1px solid #333;
    margin-bottom: 24px;
    height: 89px;
    display: flex;
    align-items: center;
}

.search-box {
    padding: 0 24px;
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    padding: 8px 16px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 6px;
    color: #e5e5e5;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.nav-section {
    margin-bottom: 32px;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    padding: 0 24px;
    letter-spacing: 0.5px;
}

.nav-items {
    list-style: none;
}

.nav-item {
    margin-bottom: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #d4d4d8;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    background: #2d3748;
    color: #ffffff;
    border-left-color: #3b82f6;
}

.nav-link.active {
    background: #1e3a8a;
    color: #ffffff;
    border-left-color: #3b82f6;
}

.nav-icon {
    margin-right: 12px;
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.nav-subitems {
    list-style: none;
    margin-left: 32px;
    display: none;
}

.nav-subitems.expanded {
    display: block;
}

.nav-subitem {
    margin-bottom: 2px;
}

.nav-sublink {
    display: block;
    padding: 6px 24px;
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav-sublink:hover {
    color: #b5b5b5;
}

.nav-sublink.active {
    color: #3b82f6;
}

.nav-item-header {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #d4d4d8;
    cursor: pointer;
    user-select: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item-header:hover {
    background: #2d3748;
    color: #ffffff;
    border-left-color: #3b82f6;
}

.nav-item-header.expanded {
    background: #1e3a8a;
    color: #ffffff;
    border-left-color: #3b82f6;
}

.nav-arrow {
    position: absolute;
    right: 16px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

.content-header {
    background: #ffffff;
    padding: 16px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 50;
    position: relative;
}

.breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

/* Additional styles for getting-started page */
.success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 16px;
    margin: 24px 0;
    border-radius: 4px;
}

.success-box .success-title {
    font-weight: 600;
    color: #047857;
    margin-bottom: 8px;
}

.success-box p {
    color: #065f46;
    margin: 0;
}

.step-box {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
    background: #ffffff;
}

.step-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
}

.field-list {
    margin: 16px 0;
}

.field-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.field-name {
    font-weight: 500;
}

.field-required {
    background: #dc2626;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.field-optional {
    background: #6b7280;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.content-body {
    padding: 16px 64px 48px 64px;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
}

.content-body h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.content-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.content-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 24px 0 12px 0;
}

.content-body p {
    color: #374151;
    margin-bottom: 16px;
    font-size: 16px;
}

.content-body ul, .content-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-body li {
    margin-bottom: 8px;
    color: #374151;
}

.content-body code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    color: #dc2626;
}

.warning-box {
    background: #fef3cd;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    margin: 24px 0;
    border-radius: 4px;
}

.warning-box .warning-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
}

.warning-box p {
    color: #92400e;
    margin: 0;
}

.info-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    margin: 24px 0;
    border-radius: 4px;
}

.info-box .info-title {
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.info-box p {
    color: #1e40af;
    margin: 0;
}

.step-container {
    display: flex;
    align-items: flex-start;
    margin: 24px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 8px 0;
    color: #1e40af;
}

.step-content p {
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content-body {
        padding: 24px 16px;
    }
    
    .content-header {
        padding: 0 16px;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 101;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Step Guide Styles */
.step-guide {
    margin: 32px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: #1e40af;
    font-size: 16px;
}

.step-content p {
    margin: 0;
    color: #6b7280;
}

/* Limitation Grid */
.limitation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.limitation-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    text-align: center;
}

.limitation-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.limitation-card h4 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 18px;
}

.limitation-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Eligible and Ineligible Lists */
.eligible-list, .ineligible-list {
    margin: 24px 0;
}

.eligible-item, .ineligible-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 8px;
}

.eligible-item {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
}

.ineligible-item {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.eligible-icon, .ineligible-icon {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eligible-item strong, .ineligible-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.eligible-item strong {
    color: #1e40af;
}

.ineligible-item strong {
    color: #dc2626;
}

.eligible-item p, .ineligible-item p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Contact Options */
.contact-options {
    margin: 32px 0;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.contact-icon {
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option h4 {
    margin: 0 0 8px 0;
    color: #1f2937;
    font-size: 16px;
}

.contact-option p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.contact-option a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-option a:hover {
    text-decoration: underline;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .limitation-grid {
        grid-template-columns: 1fr;
    }
    
    .eligible-item, .ineligible-item, .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}