/*
 * =============================================================================
 * Copyright (c) 2026 Paseo Platform LLC. All rights reserved.
 *
 * CONFIDENTIAL AND PROPRIETARY
 *
 * For licensing inquiries: www.paseoplatform.com
 * =============================================================================
 */

/**
 * Paseo Platform - Policy Page Markdown Styling
 *
 * Used by privacy policy, terms of service, retention policies, and other
 * markdown-rendered policy pages (templates that wrap content in
 * <div class="policy-markdown">).
 *
 * Extracted from inline <style> in templates/reports/base.html as part of
 * PASEO-ENH-FE-003.
 */

.policy-markdown h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.policy-markdown h3 {
    font-size: 1.1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.policy-markdown table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.policy-markdown table th,
.policy-markdown table td {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.policy-markdown table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.policy-markdown table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.policy-markdown ul,
.policy-markdown ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-markdown p {
    margin-bottom: 0.75rem;
}

.policy-markdown code {
    background-color: #f4f4f4;
    padding: 0.125rem 0.25rem;
    border-radius: 3px;
    font-size: 0.9em;
}
