/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    text-align: center;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 100px;
    margin-bottom: 1px;
}

h1 {
    margin-bottom: 0px;
}

.interactive-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#fieldCanvas {
    background-color: #0091ff;
    border: 1px solid #0091ff;
    margin: 10px;
}

.form-section {
    flex: 1;
    min-width: 100px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input, select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#result {
    margin-top: 10px;
    font-size: 1em;
    font-weight: bold;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .interactive-section {
        flex-direction: column;
    }
}
