/* Additional CSS to match the design in the image 
#bandwidthCalculator {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    color: white;
  }
  
  #results {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    color: white;
  }

  body {
    background-color: #434343;
  }
  
  h1, p {
    color: white;
  }
  
  .custom-range {
    background-color: transparent;
  }
  */


  body {
    background-color: #5d5d5d;
    color: #333;
    font-family: 'Arial', sans-serif;
  }
  
  .title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    color: #aaa;
    margin-bottom: 2rem;
  }
  
  .calculator-card {
    background-color: #222;
    color: #fff;
   
  }
  
  .calculator-card .form-group label {
    color: #aaa;
  }
  
  .calculator-card input[type="number"] {
    background-color: #333;
    border: none;
    color: #fff;
  }
  
  .calculator-card input[type="range"] {
    background-color: #333;
  }
  
  .custom-range:focus::-webkit-slider-thumb {
    box-shadow: none;
  }
  
  .output-container {
    background-color: #333;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .output-container div {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  #totalBandwidthGB {
    color: #4CAF50; /* Light green color for emphasis */
  }

  #totalBandwidth {
    color: #4CAF50; /* Light green color for emphasis */
  }
  