/*
 * Minimal overrides for Pico CSS.
 * Pico inflates the base font-size via its fluid scaling. We reset it to the
 * browser default (16 px = 100%) so everything stays a familiar size.
 */
:root {
    --pico-font-size: 100%;
}

/* Keep the card-list textarea reasonably sized. */
textarea {
    min-height: 10rem;
}

/* Status footer: subtle separator, content centred, muted colour. */
.status-footer {
    margin-top: 2rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--pico-muted-border-color);
    color: var(--pico-muted-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-footer img {
    vertical-align: middle;
    border-radius: 3px;
}
