body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
    color: black;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border: 1px solid black;
}

h1, h2 {
    text-align: center;
}

.desc {
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, select, button {
    margin-top: 5px;
    padding: 5px;
    border: 1px solid black;
    background-color: white;
    color: black;
}

button {
    margin-top: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #f0f0f0;
}

#result {
    margin-top: 20px;
    text-align: center;
}

.hidden {
    display: none;
}