body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

label {
    display: block;
    margin-bottom: 10px;
}

select {
    padding: 5px 30px 5px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

select.diamond_hoe {
    background-image: url("https://static.wikia.nocookie.net/thetekkit/images/0/04/Diamond_Hoe.png/revision/latest?cb=20121124012935");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 20px;
    padding: 5px 5px 5px 40px;
}

select.leather_helmet {
    background-image: url("https://preview.redd.it/q5by1cuzeap31.jpg?width=640&crop=smart&auto=webp&s=a59396075818eb1b0a66e2eca5366cc0adf1a462");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 20px;
    padding: 5px 5px 5px 40px;
}

input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #008CBA;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#result {
    margin-top: 20px;
    font-size: 18px;
}