 #debugWindow {
        position: fixed;
        left: 20px;
        bottom: 20px;
        z-index: 999999;
        width: 420px;
        background: #ffffff;
        border: 1px solid #ff0000;
        box-shadow: 0 0 6px rgba(0,0,0,0.25);
        font-size: 14px;
		display:none;
    }

    #debugHeader {
        cursor: move;
        background: #ff0000;
        color: #fff;
        padding: 6px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #debugContent {
        padding: 10px;
        color: #ff0000;
        max-height: 300px;
        overflow-y: auto;
    }

    .debug-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-weight: bold;
        margin-left: 8px;
        cursor: pointer;
    }