body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #d108ce, #982a7c);
    color: white;
    text-align: center;
    padding: 20px;
}

.container {
    background: rgb(208, 154, 186);
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    margin: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 22px;
}

.resistor {
    background: #ffffff;
    width: 250px;
    height: 50px;
    margin: 20px auto;
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px;
    border: 2px solid black;
}

.band {
    width: 10px;
    height: 50px;
    background: gray;
    border-radius: 5px;
}

.selectors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

select {
    padding: 5px;
    width: 80%;
    font-size: 16px;
}

button {
    background: rgb(76, 0, 64);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

button:hover {
    background: rgb(17, 0, 15);
}

#result {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}
