body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #ff6f61, #de6262);
}

.container {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

.container:hover {
    transform: scale(1.05);
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
    text-transform: uppercase;
}

label {
    display: block;
    width: 90%;
    margin-top: 10px;
    color: #555555;
    font-weight: bold;
}

input, select {
    width: 90%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 2px solid #cccccc;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border 0.3s, box-shadow 0.3s;
    appearance: none;
    background: white url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
    background-size: 18px 18px;
}

input:focus, select:focus {
    border: 2px solid #ff6f61;
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
}

button {
    padding: 12px 25px;
    background: linear-gradient(145deg, #ff6f61, #de6262);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: linear-gradient(145deg, #de6262, #ff6f61);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

#result {
    margin-top: 20px;
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

/* Specific styles for the select element */
select {
    background: white url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
    background-size: 18px 18px;
    appearance: none;
}

select:focus {
    border: 2px solid #ff6f61;
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
}

/* Styles for option elements */
option {
    background: white;
    color: #333333;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Specific styling for selected option */
select:focus > option:checked {
    background: #ff6f61;
    color: white;
}
