/*
This file is part of a quick side project. AI assistance was used to generate much of the code, and code quality or best practices were not a priority.
*/
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}
#app {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}
h1, h2 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
label {
    font-weight: bold;
}
select, input[type="number"] {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
button:hover {
    background: #0056b3;
}
.result {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: bold;
}
