/* Painel de fingerprint embutido (ex.: home.php) — não altera o body global */
.fingerprint-panel {
    --fp-bg: #0f1419;
    --fp-surface: #1a2332;
    --fp-border: #2d3a4f;
    --fp-text: #e7ecf3;
    --fp-muted: #8b9cb3;
    --fp-accent: #5b9fd4;
    --fp-warn-bg: #3d2f1a;
    --fp-warn-border: #8b6914;

    box-sizing: border-box;
    background: var(--fp-bg);
    color: var(--fp-text);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    padding: 2.5rem 0 3rem;
    margin: 0;
}

.fingerprint-panel *,
.fingerprint-panel *::before,
.fingerprint-panel *::after {
    box-sizing: border-box;
}

.fingerprint-panel a {
    color: var(--fp-accent);
}

.fp-site-header {
    padding: 0 1.5rem 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.fp-site-header h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.fp-lead {
    margin: 0;
    color: var(--fp-muted);
    max-width: 65ch;
}

.fp-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fp-card {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.fp-card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.fp-hint {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--fp-muted);
}

.fp-table-wrap {
    overflow-x: auto;
}

.fp-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.fp-data-table th,
.fp-data-table td {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--fp-border);
    vertical-align: top;
}

.fp-data-table thead th {
    color: var(--fp-muted);
    font-weight: 600;
}

.fp-data-table tbody tr:last-child th,
.fp-data-table tbody tr:last-child td {
    border-bottom: none;
}

.fp-mono {
    word-break: break-all;
    font-family: ui-monospace, "Cascadia Code", monospace;
    font-size: 0.82rem;
}

.fp-banner {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fp-banner-warn {
    background: var(--fp-warn-bg);
    border: 1px solid var(--fp-warn-border);
}

.fp-hidden {
    display: none !important;
}

.fp-noscript-only {
    display: none;
}

.fp-hash-out {
    margin: 0;
}

.fp-hash-out code {
    font-size: 0.85rem;
    word-break: break-all;
}

.fp-save-status {
    margin: 0;
    font-size: 0.875rem;
}

.fp-save-status.is-ok {
    color: #7dce8c;
}

.fp-save-status.is-err {
    color: #e88a8a;
}

.fp-site-footer {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 0.8rem;
    color: var(--fp-muted);
}
