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

:root {
    --primary: #10B981;
    --primary-dark: #079465;
    --dark-green: #0B4D3C;
    --dark-green-deep: #083D30;
    --mint-light: #F0FDF9;
    --mint-lighter: #F7FEFB;
    --dark-bg: #151515;
    --darker-bg: #111827;
    --sidebar-bg: #FFFFFF;
    --content-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --code-bg: #1F2937;
    --bg-light: #F9FAFB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: white;
}

.doc-logo{
    text-decoration: none !important;
    color: #000 !important;
    font-weight: 600;
    font-size: 1.25rem;
}

.doc-logo:hover{
    text-decoration: none !important;
    color: #000 !important;
}

.doc-logo .badge{
    background-color: #10B981;
    padding: 6px 12px;
    font-size: 11px;
    color: #fff;
    border-radius: 6px;
    margin-left: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    background: var(--bg-light);
    padding: 80px 24px;
    text-align: center;
    margin-top: 60px;
}

.hero-container {
    max-width: 700px;
    margin: 0 auto;
}

.hero-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero-container p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.search-container input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    transition: all 0.3s;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.header-logo:hover {
    color: var(--primary);
}

.header-logo i {
    color: var(--primary);
}

.header-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.header-link:hover {
    color: white;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 280px;
    height: calc(100vh - 60px);
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    padding: 0;
}

/* Contact Support Button */
.contact-support-btn {
    padding: 20px 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-support-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: white !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.contact-support-btn a:hover {
    background: var(--primary-dark);
}

.contact-support-btn i {
    font-size: 1rem;
}

/* Sidebar Header */
.sidebar-header {
    padding: 20px 24px 15px 24px;
}

.sidebar-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

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

.nav-section-title {
    padding: 0 24px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

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

.nav-links a {
    display: block;
    padding: 8px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    background: #F3F4F6;
    color: var(--primary);
}

.nav-links a.active {
    background: #ECFDF5;
    border-left-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    margin-top: 60px;
    padding: 48px 64px;
    max-width: 1200px;
}

/* Page Header */
.page-header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1rem;
}

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

.content-section li {
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Code Blocks */
.code-block {
    background: var(--code-bg);
    color: #F9FAFB;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Info Boxes */
.info-box {
    background: #ECFDF5;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.info-box h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box {
    background: #FFF7ED;
    border-left: 4px solid #F59E0B;
    padding: 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.warning-box h4 {
    color: #D97706;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Step Cards */
.step-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 12px;
}

.step-card h4 {
    display: inline;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.step-card p,
.step-card ul {
    margin-top: 12px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

table th,
table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: #F9FAFB;
}

/* Quick Start Box */
.quick-start-box {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.quick-start-box h3 {
    color: var(--primary);
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-280px);
    }

    .main-content {
        margin-left: 0;
        padding: 24px;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .header-right {
        display: none;
    }
}