/* Main wrapper */
.jg-app {
    width: 100%;
    position: relative;
}

/* Layout like OneLap */
.jg-layout {
    display: flex;
    gap: 0;
}

/* LEFT DEVICE LIST */
.jg-device-list {
    width: 260px;
    background: #0f0f0f;
    border-right: 1px solid #222;
    color: #fff;
    overflow-y: auto;
    height: 600px;
    z-index: 2;
}

.jg-device {
    padding: 10px 12px;
    border-bottom: 1px solid #222;
    cursor: pointer;
    font-size: 13px;
}

.jg-device:hover {
    background: #1a1a1a;
}

.jg-device .status {
    font-size: 10px;
    opacity: 0.7;
}

/* MAP AREA */
.jg-map-area {
    position: relative;
    width: 100%;
    height: 600px;
    z-index: 1;
}

/* Map itself */
#jg-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Right control panel */
#jg-panel {
    position: absolute;
    top: 50px;
    right: 15px;
    width: 240px;
    background: rgba(0,0,0,0.9);
    border-left: 4px solid #ff6b00;
    padding: 14px;
    color: #fff;
    z-index: 5;
    font-family: Inter, sans-serif;
}

/* Status colors */
.status-moving { color: #22c55e; }
.status-idle   { color: #facc15; }
.status-offline{ color: #ef4444; }

/* Icons */
.jg-icon {
    margin-right: 6px;
    opacity: 0.8;
}
