#turborl-debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 12px;
}
#turborl-debug-toggle {
    background: #1d2327;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: background 0.2s;
}
#turborl-debug-toggle:hover {
    background: #2c3338;
}
#turborl-debug-toggle .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
}
#turborl-debug-toggle .status-dot.status-ok {
    background: #46b450;
}
#turborl-debug-toggle .status-dot.status-blocked {
    background: #dc3232;
}
#turborl-debug-content {
    display: none;
    background: #1d2327;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 350px;
    min-width: 280px;
    margin-bottom: 10px;
    overflow: hidden;
}
#turborl-debug-content.expanded {
    display: block;
}
#turborl-debug-header {
    background: #2271b1;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#turborl-debug-header span {
    font-weight: 600;
}
#turborl-debug-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
}
#turborl-debug-close:hover {
    opacity: 1;
}
#turborl-debug-table {
    width: 100%;
    border-collapse: collapse;
}
#turborl-debug-table tr {
    border-bottom: 1px solid #3c434a;
}
#turborl-debug-table td:first-child {
    padding: 8px 15px;
    color: #a7aaad;
    white-space: nowrap;
    width: 1%;
}
#turborl-debug-table td:last-child {
    padding: 8px 15px;
    word-break: break-all;
}
#turborl-debug-footer {
    padding: 8px 15px;
    background: #2c3338;
    font-size: 11px;
    color: #a7aaad;
}
#turborl-debug-footer .test-mode {
    color: #dba617;
}
#turborl-debug-footer .live-mode {
    color: #46b450;
}
