/* Tables */
.error-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.error-table th,
.error-table td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: left;
}

.error-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Lists */
.doc-section ul,
.doc-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.doc-section li {
    margin-bottom: 10px;
}

/* Notes and Warnings */
.note {
    background-color: #e8f0fe;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Code Blocks */
.code-block {
    background: #1e1e1e;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Consolas', monospace;
} 