.calc-invest-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
}

.calc-invest-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-section {
    flex: 1;
    min-width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #f9f9f9;
}

.form-section h3 {
    font-size: inherit;
    margin-bottom: 15px;
    font-weight: bold;
}

.calc-invest-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.calc-invest-form h2 h3 {
    padding-top: 35px;
}
.calc-invest-form input, .calc-invest-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
}

.money-input {
    text-align: left; /* Alinhamento à esquerda */
}

.calc-invest-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
}

.calc-invest-table th, .calc-invest-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.calc-invest-table th {
    background-color: #f2f2f2;
}

button, .calc-submit-button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover, .calc-submit-button:hover {
    background-color: #005d87;
}

.error {
    border-color: red;
}

h3 {
    margin-bottom: 10px;
}

#investChart {
    margin: 50px 0;
}

.results-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-box h3 {
    margin: 0;
}

@media (max-width: 600px) {
    .calc-invest-form {
        flex-direction: column;
    }
    .form-section {
        min-width: 100%;
    }
    .calc-invest-form input, .calc-invest-form select {
        max-width: 100%;
    }
    .calc-invest-table {
        font-size: 14px;
    }
    button, .calc-submit-button {
        width: 100%;
        max-width: 200px;
    }
    .results-box {
        flex-direction: column;
        gap: 10px;
    }
}