diff --git a/web/src/styles.css b/web/src/styles.css index 4d5c046..775631a 100644 --- a/web/src/styles.css +++ b/web/src/styles.css @@ -349,19 +349,27 @@ html, body { /* ── Refresh Button ── */ .hub-refresh-btn { - background: none; - border: none; - color: var(--text-muted); - font-size: 1rem; - cursor: pointer; - padding: 4px 6px; + display: flex; + align-items: center; + justify-content: center; + width: 30px; + height: 30px; + border: 1px solid var(--border); border-radius: var(--radius); - transition: all var(--transition); + background: var(--bg-secondary); + color: var(--text-muted); + font-size: 14px; line-height: 1; + cursor: pointer; + transition: all var(--transition); } .hub-refresh-btn:hover { color: var(--accent); - background: rgba(230, 126, 34, 0.1); + border-color: var(--accent-border); + background: var(--accent-dim); +} +.hub-refresh-btn:active { + transform: scale(0.95); } /* ── Admin Button (header) ── */