/* static/css/pages/docs-detail.css */
/* Страница просмотра документации. */

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #EEF5FB;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    margin-bottom: 40px;
}

.document-title {
    font-size: 32px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.document-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.document-text h1,
.document-text h2,
.document-text h3,
.document-text h4,
.document-text h5,
.document-text h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.document-text h1 { font-size: 28px; }
.document-text h2 { font-size: 24px; }
.document-text h3 { font-size: 20px; }
.document-text h4 { font-size: 18px; }
.document-text h5 { font-size: 16px; }
.document-text h6 { font-size: 14px; }

.document-text p {
    margin-bottom: 15px;
}

.document-text ul,
.document-text ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.document-text li {
    margin-bottom: 8px;
}

.document-text a {
    color: #5B9BD5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.document-text a:hover {
    color: #4A8BC8;
    text-decoration: underline;
}

.document-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.document-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.document-text table th {
    background: #f5f5f5;
    font-weight: 500;
}

.document-text blockquote {
    border-left: 4px solid #5B9BD5;
    padding-left: 20px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

.document-text code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.document-text pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.document-text pre code {
    background: none;
    padding: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .site-logo-img {
        max-width: 125px;
        max-height: 50px;
    }

    .document-title {
        font-size: 24px;
    }

    .document-text {
        font-size: 15px;
    }
}
