.extra-container {
    position: relative;
    width: calc(100% - 20px);
    background-color: #24262E;
  }
  
  .settings-container {
    color: #ffffff;
    position: absolute;
    transform: translateY(400%);  /* Initial position moved using translateY */
    left: 0;
    width: 100%;
    background-color: #292a2e;
    padding: 20px;
    margin-bottom: 50px;
    box-sizing: border-box;
    transition: transform 0.8s ease-in-out;  /* Transition on transform property */
}

.settings-container.active {
    transform: translateY(0);  /* Active state moves it back to its original position */
}


  
  .toggle-button {
    margin-right: 10px;
  }

  
  .settings-container button,
  .settings-container input[type="button"],
  .settings-container input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #FF4D4D;
    color: #FFF;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  .settings-container button.remove {
    background-color: #C0392B;
  }
  
  .settings-container button:hover,
  .settings-container input[type="button"]:hover,
  .settings-container input[type="submit"]:hover {
    background-color: #FF6E6E;
  }
  
  .settings-container small {
    display: block;
    color: #bbb;
    margin-top: 5px;
  }
  
  .settings-container input[type="text"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #333;
    color: #FFF;
  }
  
  .settings-container label {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }
  
  .settings-container .toggle-label {
    display: inline-block;
    vertical-align: middle;  /* aligns the middle of the element with the middle of the line height of its parent */
    margin-left: 10px;       /* provides spacing between the toggle and its label */
  }
  
  .settings-container .toggle-button {
    vertical-align: middle;  /* aligns the middle of the element with the middle of the line height of its parent */
  }
