body{
    background: rgb(0, 0, 0);
    color:rgb(255, 255, 255);
}

.bContainer {
    width: 80%;
    text-align: center;
}

.ledMamalon{
    margin-bottom: 50px;
    width: 50%;
    margin: 0 auto;
}

.slider{

width: 100%;
  height: 50px; 
  overflow: hidden; 
  position: relative;
}

svg {
    width: 250px;
    max-width: 100%;
    height: auto;
    fill: currentColor; 
    color: rgb(255, 255, 255); 
    filter: brightness(100%);
}


input[type="range"] {
    width: 50%;
    margin: 0 auto;
}

.color-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
}

#resetBtn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: rgba(128, 128, 128, 0);
    color: white;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    transition: background 0.3s;
}

#resetBtn:hover {
    background: darkgray;
}