.controls-panel{
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 7px 20px;
    box-sizing: border-box;
    background-color: rgba(20, 29, 30, 0.65);
    backdrop-filter: blur(4px);
    border: 1px solid #3a4149;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    z-index: 20;
}.controls-panel .control-group{ 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}.controls-panel .control-group label{ 
    font-size: 16px; 
    color: rgb(224, 224, 224); 
    font-weight: bold; 
}.controls-panel .control-group select{
  background-color: #131d1e;
  color: rgb(224, 224, 224);
  border: 1px solid #3a4149;
  border-radius: 4px;
  padding: 2px 8px; 
  font-family: inherit; 
  font-size: 15px;
}.controls-panel .strategy-selector-panel{
    display: flex;
    gap: 8px;
    margin-left: auto;
}.controls-panel .strategy-option input[type="radio"]{ 
    display: none; 
}.controls-panel .strategy-option{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    border: 1px solid #455155;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}.controls-panel .strategy-option i{ 
    font-size: 16px; 
    color: #a0b0c0; 
    transition: color 0.2s; 
}.controls-panel .strategy-option:hover{ 
    background-color: #2c3a3e; 
}.controls-panel .strategy-option.active{ 
    border-color: #4fcaae; 
    background-color: #224b42; 
}.controls-panel .strategy-option.active i{ 
    color: #4fcaae; 
}