.svgclass {
    height: auto;
    border: 4px solid rgb(25, 78, 134);
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 100px;
    margin-right: 100px;
    padding: 20px;
    box-shadow: 2px 2px 5px 4px black;
  }

  .custom-slider-container {
    width: 100%;
    position: relative; /* Set the position to relative for child positioning */
}

/* Style the slider track */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

/* Style the slider thumb (the handle) */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #3498db;
    cursor: pointer;
}

/* Style the slider thumb (the handle) for Mozilla Firefox */
.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #3498db;
    cursor: pointer;
}

/* Style the slider value span */
.slider-value {
    top: -30px; /* Adjust the positioning as needed */
    color: white;
    font-family: Arial, sans-serif; /* Change the font family to your preferred font */
    font-size: 30px; /* Adjust the font size as needed */
}
.slider-value2 {
    top: -30px; /* Adjust the positioning as needed */
    color: rgb(0, 0, 0);
    font-family: Arial, sans-serif; /* Change the font family to your preferred font */
    font-size: 30px; /* Adjust the font size as needed */
}
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 4px; /* Reduce the padding to decrease column spacing */
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Reduce the size of the input fields */
table input[type="text"],
table input[type="number"] {
    width: 60px; /* Adjust the width as needed */
}

.sidepanel {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 250px;
    top: 0;
    right: 0;
    background-color: #f04747;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30x;
  }
  
  #lists {
    margin-left: 20px;
    padding: 8px 8px 8px 32px;
    color: white;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff7f7;
    display: block;
    transition: 0.3s;
  }
  
  .sidepanel a:hover {
    color: #6b6969;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #e14545;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  li {
    margin: 20px;
  }
  
/* .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.button-container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-container button:hover {
    background-color: #1e6091;
} */

