/* ── Brand colours ─────────────────────────────────── */
.bg-pt-dark   { background-color: #1b2a4a !important; }
.text-pt-dark  { color: #1b2a4a !important; }
.border-pt-accent { border-color: #e8952e !important; }

.btn-pt-accent {
    background-color: #e8952e;
    color: #1b2a4a;
    border-color: #e8952e;
}
.btn-pt-accent:hover,
.btn-pt-accent:focus-visible {
    background-color: #d78521;
    border-color: #d78521;
    color: #1b2a4a;
}

/* ── Navbar tweaks ────────────────────────────────── */
.navbar .nav-link.active {
    background: #e8952e;
    color: #1b2a4a !important;
    border-radius: 4px;
}

/* ── Form inputs — match Bootstrap control styling on Django widgets ── */
input:not([type="hidden"]),
select,
textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
input:focus,
select:focus,
textarea:focus {
    border-color: #e8952e;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(232, 149, 46, .25);
}

/* ── Error lists (Django) ─────────────────────────── */
.errorlist {
    list-style: none;
    padding: .5rem .75rem;
    margin: .25rem 0 0;
    font-size: .875rem;
    color: var(--bs-danger);
}

/* ── Copy-button success state ────────────────────── */
.copied {
    background-color: #d9f2e3 !important;
    border-color: #8ecaa4 !important;
    color: #1d5b34 !important;
}

/* ── Map page ─────────────────────────────────────── */
#map {
    width: 100%;
    height: 100%;
}

