.docs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
.docs-header {
    text-align: center;
    margin-bottom: 50px;
}
.docs-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}
.docs-header p {
    font-size: 18px;
    color: #64748b;
}
.docs-nav {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
    z-index: 100;
}
.docs-nav h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.docs-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.docs-nav li {
    margin-bottom: 8px;
}
.docs-nav a {
    color: #64748b;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    transition: all 0.2s ease;
}
.docs-nav a:hover {
    background: #f1f5f9;
    color: #0066CC;
}
.docs-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.docs-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}
.docs-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.docs-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #334155;
    margin-top: 32px;
    margin-bottom: 12px;
}
.docs-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}
.docs-section ul, .docs-section ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}
.docs-section li {
    margin-bottom: 8px;
}
.code-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #1e293b;
}
.info-box {
    background: #eff6ff;
    border-left: 4px solid #0066CC;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}
.success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}
.docs-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}
.docs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.docs-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.docs-logo-img {
    max-width: 120px;
    min-width: 90px;
    height: auto;
    object-fit: contain;
}
