 /* Estilo geral */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.left {
    width: 40%;
}

.right {
    width: 55%;
}

h1, h2 {
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    text-align: left;
    font-weight: bold;
}

input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#development {
    font-size: 16px;
    margin-bottom: 20px;
}

#graph {
    width: 100%;
    height: 400px;
}

/* Estilo para o footer */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
    position: relative;
    bottom: 0;
}

footer h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
