/**
 * report.css — the "Report an issue" page: note field, area/system select, and
 * the photo grid (camera capture) with an add tile and per-photo remove. Send
 * is pinned to the bottom by the page's col layout + pf-spacer.
 */

.rform{display:flex;flex-direction:column;gap:2px;margin-top:6px}
.rlabel{font-size:11.5px;font-weight:800;color:var(--muted);text-transform:uppercase;letter-spacing:.3px;margin:14px 2px 7px}
.rtext,.rsel{width:100%;background:var(--surface);border:1px solid var(--line);border-radius:13px;padding:13px;font-family:inherit;font-size:15px;font-weight:500;color:var(--ink)}
.rtext{resize:vertical;min-height:96px} .rsel{font-weight:600;-webkit-appearance:none;appearance:none}
.rphotos{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.rphoto{position:relative;aspect-ratio:1;border-radius:12px;background-size:cover;background-position:center;box-shadow:inset 0 0 0 1px var(--line)}
.rphoto-rm{position:absolute;top:4px;right:4px;width:22px;height:22px;border-radius:50%;border:none;background:rgba(0,0,0,.6);color:#fff;font-size:15px;font-weight:800;line-height:1;display:grid;place-items:center}
.rphoto-add{aspect-ratio:1;border-radius:12px;border:1.5px dashed var(--line);background:var(--surface-2);color:var(--muted);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;cursor:pointer;font-size:22px}
.rsubmit{width:100%;padding:15px;margin-top:0;border-radius:14px;border:none;background:var(--accent);color:#08161f;font-weight:800;font-size:15.5px}
