body {
    font-family: 'Merriweather', 'Playfair Display', serif;
    margin: 20px;
}

h1 {
    font-size: 35px;
    color: #0d7dd4;
    margin-bottom: 20px;
}

h2 {
    color: #0d7dd4;
    margin-bottom: 20px;
    font-size: 20px;
}

input, select, button {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
}

select, input {
    border: 1px solid #0d7dd4;
    border-radius: 50px;
}

button {
    cursor: pointer;
    background-color: #0d7dd4;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-radius: 50px;
}

button:hover {
    background-color: #0b6fbb;
}

#results {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background-color: #f0fdf9;
    border: 2px solid #0d7dd4;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#results.show {
    opacity: 1;
    transform: scale(1);
}

.input-group {
    margin-bottom: 20px;
}
