Is it possible to change the color of div #panel when hovering over the button #button inside div #left?
#left #button:hover~#panel {
background-color: blue;
}
#panel {
position: absolute;
float: right;
left: 37.5%;
width: 50%;
height: 5px;
background-color: rgb(180, 30, 30);
}
<div id="left">
<button id="button">Topics</button>
</div>
<div id="panel"></div>