body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #f8b500, #fceabb);
}

.canvas {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.container {
    width: 300px;
}

h1, h2 {
    text-align: center;
    color: #333333;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-top: 10px;
}

input, button {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background: #f8b500;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1.2rem;
}

button:hover {
    background: #f7a000;
}

#result {
    display: none;  /* Hide the result section initially */
    margin-top: 20px;
    text-align: center;
}

#insights {
    margin-top: 20px;
    text-align: left;
    color: #333333;
}
