body {
    background-image: url("./hero-geometric-bg3.png");
    background-size: cover;
    background-position: top; 
}
.docs_bis {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
    background: #ffffff;
}
.docs{
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 1px 40px 40px 40px;
}

.docs h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.docs .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.docs h2 {
    font-size: 1.8rem;
    margin-top: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.docs h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3c3c3c;
}

.docs p {
    margin-bottom: 1.2rem;
    color: #444;
}

.command-block {
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}


.command-block h2,
.command-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #0066cc;
}

.command-block.basic {
    border-left: 4px solid #333333;
}

.command-block.basic h3 {
    color: #333333;
}

.command-block pre {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1rem 0;
}

.command-block code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
}

.param-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.param-table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    color: #2c2c2c;
}

.param-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.param-table tr:hover {
    background: #f8f9fa;
}

.param-table code {
    background: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #d63384;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box strong {
    color: #0066cc;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning-box strong {
    color: #856404;
}

.node0 { color: #0066cc; font-weight: 600; display: inline-block;  }
.node1 { color: #28a745; font-weight: 600; display: inline-block;  }
.node2 { color: #dc3545; font-weight: 600; display: inline-block;  }

code .node0 { color: #0066cc; }
code .node1 { color: #28a745; }
code .node2 { color: #dc3545; }

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
    margin-right: 0.5rem;
}
        
.parameter {
    width: 300px;
}

.description {
    width: auto;
}

.example {
    width: 330px;
}

.code-block-container {
            position: relative;
            margin: 20px 0;
}

.code-block-container code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-button:hover {
    transform: translateY(-2px);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-button.copied {
}

.copy-icon {
    width: 16px;
    height: 16px;
}

/* Python syntax highlighting */
        .code-block-container .python-keyword {
            color: #c7254e;
            font-weight: bold;
        }

        .code-block-container .python-function {
            color: #795da3;
        }

        .code-block-container .python-string {
            color: #0d5aa7;
        }

        .code-block-container .python-comment {
            color: #6c757d;
            font-style: italic;
        }

        .code-block-container .python-number {
            color: #0066cc;
        }

        .code-block-container .python-class {
            color: #0c7d3a;
        }

        .code-block-container .python-builtin {
            color: #795da3;
        }



