/* Phased Array Emitter Styles */
#phased-array-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    /* Matched to canvas size in JS */
    height: 400px;
    z-index: 10;
    pointer-events: none;
    /* No border, no background as requested */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    #phased-array-container {
        width: 300px;
        height: 300px;
    }
}