/* Router debug panel styles */
#routerDebugPanel {
    position: fixed;
    right: 12px;
    bottom: 12px;
    width: 320px;
    max-height: 46vh;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 9999;
    font-size: 13px;
}
#routerDebugHeader {
    display:flex; align-items:center; justify-content:space-between; gap:8px;
    padding:8px 10px; background: linear-gradient(90deg, rgba(0,0,0,0.03), transparent);
    border-bottom:1px solid var(--border-color);
}
#routerDebugHeader button { background:transparent; border:none; cursor:pointer; font-size:14px; }
#routerDebugLog { padding:8px 10px; overflow:auto; max-height: calc(46vh - 44px); }
.router-debug-entry { padding:6px 0; border-bottom:1px dashed rgba(0,0,0,0.04); color:var(--text-secondary); }
.router-debug-entry b { color:var(--text-primary); }
