/* site_policies/css/site_policies.css
   Styles for policy content rendering and cookie consent banner. */

/* ── Policy Content ───────────────────────────────────────────────────────── */

.policy_content {
    line-height: 1.8;
    word-wrap: break-word;
}

.policy_content h1,
.policy_content h2,
.policy_content h3,
.policy_content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy_content p {
    margin-bottom: 1rem;
}

.policy_content ul,
.policy_content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy_content li {
    margin-bottom: 0.3rem;
}

.policy_content a {
    color: var(--accent, #2196F3);
    text-decoration: underline;
}

.policy_content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.policy_content table th,
.policy_content table td {
    padding: 0.5rem;
    border: 1px solid rgba(128, 128, 128, 0.3);
    text-align: left;
}

/* ── Cookie Consent Banner ────────────────────────────────────────────────── */

.cookie_consent_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-secondary, #1a1a2e);
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie_consent_banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary, #e0e0e0);
}

.cookie_consent_banner a {
    color: var(--accent, #2196F3);
    text-decoration: underline;
}

.cookie_consent_banner button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: var(--accent, #2196F3);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cookie_consent_banner button:hover {
    opacity: 0.85;
}
