/* ======================================
   DEBUG PANEL
====================================== */

.ll-debug-panel {
    position: fixed;
    bottom: 10px;
    left: 10px;

    z-index: 999999;

    background: rgba(0, 0, 0, 0.85);
    color: #00ffcc;

    font-family: monospace;
    font-size: 12px;

    padding: 10px;
    border-radius: 6px;

    min-width: 220px;
}

.ll-debug-panel .dbg-title {
    font-weight: bold;
    margin-bottom: 6px;
    color: #ffffff;
}

.ll-reload-circle {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid #00ff00;
    border-radius: 50%;

    background: rgba(0, 255, 0, 0.08);

    pointer-events: none;
    z-index: 998;
}