/**
 * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 *
 * AI Legal Disclaimer - Shared Styles.
 * Theme-adaptive (light and dark/cinematic report surfaces) styling for the centralized
 * AI accuracy/liability legal disclaimer rendered by Views/Shared/_AiLegalDisclaimer.cshtml
 * (pre-generation) and appended by wwwroot/js/shared/ai-legal-disclaimer.js (post-generation).
 *
 * Colors are built from currentColor / rgba overlays so the notice reads correctly whether
 * the surrounding surface is light (default reports, G25 Studio) or dark (cinematic
 * Ancient Composition, Deep Ancestry, Celtic, Viking, Iberian, etc. reports). No entrance
 * animation is used, per the "Section and Element Fade-In (Forbidden)" rule.
 */

.ai-legal-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    margin: 0.75rem 0;
    border-radius: 8px;
    background: rgba(120, 120, 120, 0.08);
    border: 1px solid rgba(120, 120, 120, 0.28);
    color: inherit;
}

.ai-legal-disclaimer__icon {
    flex: 0 0 auto;
    width: 1.05em;
    height: 1.05em;
    margin-top: 0.2em;
    background-color: currentColor;
    opacity: 0.7;
}

.ai-legal-disclaimer__text {
    flex: 1 1 auto;
    min-width: 0;
    color: inherit;
}

.ai-legal-disclaimer__scope {
    margin: 0 0 0.45rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: inherit;
    opacity: 0.9;
}

.ai-legal-disclaimer__legal {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: inherit;
    opacity: 0.85;
}

/* Pre-generation placement: sits above the AI trigger button/prompt box */
.ai-legal-disclaimer--pre {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Post-generation placement: appended beneath the rendered AI output */
.ai-legal-disclaimer--post {
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-style: dashed;
    background: transparent;
}

/* Condensed variant for space-constrained surfaces (chart explainers, indicator cards) */
.ai-legal-disclaimer--short {
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
}

.ai-legal-disclaimer--short .ai-legal-disclaimer__legal {
    font-size: 0.75rem;
}

/* Publication AI summary variant reuses the same base look; kept as its own modifier hook
   in case publication surfaces need surface-specific spacing in the future. */
.ai-legal-disclaimer--publication {
    margin-top: 0.75rem;
}

/* AI-generated portrait image variant, used alongside sample-drawer/sample-profile
   portraits as the inline (non-marker) form of the disclosure. */
.ai-legal-disclaimer--image {
    margin-top: 0.75rem;
}

/* Optional dark-theme modifier for cinematic/obsidian report surfaces where the default
   neutral-gray overlay reads too faint against a dark background. Views opt in via
   AiLegalDisclaimerModel.ThemeClass = "ai-legal-disclaimer--dark". */
.ai-legal-disclaimer--dark {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.ai-legal-disclaimer--dark .ai-legal-disclaimer__icon {
    opacity: 0.85;
}

.ai-legal-disclaimer--dark .ai-legal-disclaimer__scope,
.ai-legal-disclaimer--dark .ai-legal-disclaimer__legal {
    opacity: 0.95;
}

/* Keep visible and legible when reports are printed/exported. */
@@media print {
    .ai-legal-disclaimer {
        background: transparent !important;
        border: 1px solid #000 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ai-legal-disclaimer__icon {
        background-color: #000 !important;
    }
}
