/* FX Module styling */
.fx-module {
    border: 1px solid #35100B;
    background-color: #f2eed3;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-width: 75px;
    max-width: 75px;
    align-items: center;
    padding-top: 15px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* Module title */
  .module-title.fx {
    color: #f2eed3;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #CF814D;
    padding: 5px 0;
    border-radius: 10px;
    border: 0px solid #35100B;
    width: 250%;
    margin-top: -15px;
  }
  
  /* Chorus button container */
  .chorus-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 5px;
  }
  
  /* Chorus button */
  .chorus-button {
    width: 40px;
    height: 40px;
    background-color: #CF814D; /* Orange color */
    border: 2.5px solid #35100B;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .chorus-button:hover {
    background-color: #d69061;
  }
  
  /* Chorus indicators */
  .chorus-indicator {
    color: #35100B;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 18px;
    transition: color 0.2s;
    position: absolute;
  }
  
  .chorus-indicator.first {
    left: 12px;
  }
  
  .chorus-indicator.second {
    right: 12px;
  }
  
  /* States for the chorus button */
  .chorus-button.state-1 .chorus-indicator.first {
    color: #f2eed3;
  }
  
  .chorus-button.state-2 .chorus-indicator.first,
  .chorus-button.state-2 .chorus-indicator.second {
    color: #f2eed3;
  }
  
  .chorus-button.state-1, 
  .chorus-button.state-2 {
    box-shadow: 0 0 8px rgba(207, 129, 77, 0.8);
  }
  
  /* Chorus label */
  .chorus-button-container label {
    margin-top: 5px;
    font-family: "Nunito", sans-serif;
    font-size: 10px;
    font-variant-caps: all-small-caps;
    font-weight: 750;
    color: #35100B;
    text-align: center;
  }
  
  /* FX knobs column */
  .fx-knobs-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  /* Knob containers */
  .fx-module .knob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Knob labels */
  .fx-module .knob-container label {
    font-family: "Nunito", sans-serif;
    font-size: 10px;
    font-variant-caps: all-small-caps;
    font-weight: 750;
    color: #35100B;
  }