body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    font-family: 'Comfortaa', cursive;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.controls {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 80%;
    max-width: 400px;
}

.disclaimer-block {
    border: 1px solid #ccc;
    padding: 15px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-family: sans-serif;
    color: #333;
}

.disclaimer-block h2 {
    margin-top: 0;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.disclaimer-block p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclaimer-block p:last-child {
    margin-bottom: 0;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Comfortaa', cursive;
}

select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-self: center;
    width: 100%;
    max-width: 200px;
}

button:hover {
    background-color: #0056b3;
}

#results {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
    text-align: center;
}

#error-message {
    color: red;
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    label {
        display: inline-block;
        width: auto;
        margin-bottom: 0;
    }
    select{
        width: auto;
    }
    button{
        width: auto;
        align-self: auto;
    }
}