/* ============================================
   UI Debug — 開発者デバッグパネル
   ============================================ */

.dev-debug-panel {
    position: fixed; bottom: 10px; left: 10px; z-index: 9999;
    background: rgba(0, 0, 0, 0.8); color: white; border: 1px solid #444;
    border-radius: 8px; padding: 10px; font-family: monospace; font-size: 11px;
    pointer-events: auto;
}
.dev-debug-panel.collapsed { width: auto; height: auto; }
.dev-debug-panel.collapsed .debug-content { display: none; }
.debug-toggle {
    background: #333; color: #fff; border: none; padding: 4px 8px;
    border-radius: 4px; cursor: pointer; margin-bottom: 8px;
}
.debug-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.debug-row input { background: #222; color: #fff; border: 1px solid #444; width: 60px; }
