﻿/* site.css — Box of Dragons overrides
 *
 * Loads AFTER css/shared.css (served from the root Structured Chaos site).
 * Contains only overrides for this site. All tokens, base styles,
 * typography, global bar, site header, panels, chips, color pairs, buttons,
 * forms, lists, gallery, footer, and responsive breakpoints live in
 * css/shared.css.
 *
 * Box of Dragons uses the shared layout values directly (.shell width: 80%,
 * .page-layout with 340px sidebar), so no layout overrides are needed here.
 * This file is kept for future site-specific additions.
 */

/* ==========================================================================
   Theme overrides
   ========================================================================== */
:root {
    --primary: #8a5b6e;
    --primary-light: #c18e9e;
    --primary-dark: #5b3d4a;
    --secondary: #f6f0f2;
    --secondary-light: #faf5f7;
    --secondary-dark: #e6d8de;
    --tertiary-dark: #f1e8ec;
}

.link-label {
    font-weight: 700;
}

.link-url {
    display: block;
    font-style: italic;
    font-size: 0.85em;
    word-break: break-all;
}

textarea {
    width: 100%;
    min-height: 140px;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.4rem;
    font: inherit;
    resize: vertical;
}

select[multiple] {
    width: 100%;
    min-height: 120px;
}

td form,
.list form {
    display: inline-block;
    margin: 0;
}
