.documentation-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.documentation-page h1 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.documentation-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 5px;
}

.documentation-page h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #555;
}

.documentation-page h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #666;
}

.documentation-page p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.documentation-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.documentation-page li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.documentation-page code {
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.documentation-page pre {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
    overflow-x: auto;
    margin-bottom: 20px;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.documentation-page .btn {
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.2s ease-in-out;
}

/* Improved button colors for better readability */
.documentation-page .btn-success {
    background-color: #198754;
    color: #ffffff;
    font-weight: 600;
}

.documentation-page .btn-success:hover {
    background-color: #146c43;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.documentation-page .btn-primary {
    background-color: #0d6efd;
    color: #ffffff;
    font-weight: 600;
}

.documentation-page .btn-primary:hover {
    background-color: #0b5ed7;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.documentation-page .btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
    font-weight: 600;
}

.documentation-page .btn-secondary:hover {
    background-color: #5c636a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

/* Focus states for accessibility */
.documentation-page .btn:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.documentation-page .btn-success:focus {
    outline-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.documentation-page .btn-secondary:focus {
    outline-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.documentation-page ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.documentation-page a {
    color: #0066cc;
    text-decoration: none;
}

.documentation-page a:hover {
    text-decoration: underline;
}