/* The customer app uses the shared web base (palette, surface tokens,
   components) from crates/ui/style/web.css (linked just before this
   file). Only customer-specific styles live here. */

/* Log/metric tabs now live in crates/ui/style/web.css (shared with
   the vet history page). */

/* ===== Pet detail history disclosure ===== */
.history-section { margin: 1rem 0; }
.history-section > summary {
    cursor: pointer;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.5rem 0;
}
.history-section > summary::-webkit-details-marker { display: none; }
.history-section > summary::before {
    content: "▸";
    color: var(--muted);
    margin-right: 0.4rem;
    display: inline-block;
}
.history-section[open] > summary::before { content: "▾"; }
