/* static/answer-styles.css */

.answer-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.answer-section:last-child {
    border-bottom: none;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1a365d;
    padding-left: 0.5rem;
    border-left: 4px solid #2c5282;
}

.section-content {
    line-height: 1.6;
    color: #2d3748;
}

/* Стиль для списков */
.tips-list {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.tips-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #2d3748;
}

/* Стиль для дисклеймера */
.izbas-disclaimer {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fef5e7;
    border-left: 4px solid #e6b800;
    font-size: 0.85rem;
    color: #744210;
    border-radius: 0.25rem;
}

/* Для длинных ответов — скролл */
.section-content {
    overflow-x: auto;
    word-wrap: break-word;
    white-space: normal;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }
    
    .section-content {
        font-size: 0.9rem;
    }
}

/* Для печати */
@media print {
    .answer-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .izbas-disclaimer {
        background: none;
        border-left: 2px solid #ccc;
    }
}
