.spaceSimulation-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.spaceSimulation-canvas-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
}

.spaceSimulation-canvas-container canvas {
    border: 2px solid #333;
    border-radius: 8px;
    background: #000;
    cursor: crosshair;
}

.spaceSimulation-control-panel {
    width: 350px;
    background: rgba(15, 15, 15, 0.95);
    border-left: 2px solid #333;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.spaceSimulation-control-panel.collapsed {
    width: 0px;
}

.spaceSimulation-control-panel .panel-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-bottom: 2px solid #333;
    padding: 15px 20px;
    position: relative;
    z-index: 10;
}

.spaceSimulation-control-panel .panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.spaceSimulation-control-panel.collapsed .panel-content {
    opacity: 0;
    overflow: hidden;
}