.calcufacil-solar_panel_calculator.calcufacil-container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: Arial, sans-serif;
}

.calcufacil-solar_panel_calculator .calcufacil-left,
.calcufacil-solar_panel_calculator .calcufacil-right {
    flex: 1;
    min-width: 300px;
}

.calcufacil-solar_panel_calculator .calculator-form h2 {
    font-size: 20px;
    color: #0073aa;
    margin-bottom: 15px;
}

.calcufacil-solar_panel_calculator .input-group {
    margin-bottom: 20px;
}

.calcufacil-solar_panel_calculator label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.calcufacil-solar_panel_calculator small {
    display: block;
    color: #666;
    font-size: 12px;
}

.calcufacil-solar_panel_calculator input[type="number"],
.calcufacil-solar_panel_calculator select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.calcufacil-solar_panel_calculator button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.calcufacil-solar_panel_calculator button:hover {
    background-color: #005d87;
}

.calcufacil-solar_panel_calculator .results {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
}

.calcufacil-solar_panel_calculator .results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.calcufacil-solar_panel_calculator .breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.calcufacil-solar_panel_calculator .solar-visualization {
    margin-top: 20px;
    text-align: center;
}

.calcufacil-solar_panel_calculator .pie {
    display: block;
    margin: 0 auto;
}

.calcufacil-solar_panel_calculator .legend {
    margin-top: 10px;
}

.calcufacil-solar_panel_calculator .legend span {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.calcufacil-solar_panel_calculator .legend i {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.calcufacil-solar_panel_calculator .tips {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

.calcufacil-solar_panel_calculator .tips h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.calcufacil-solar_panel_calculator .tips ul {
    list-style: disc;
    padding-left: 20px;
}

.calcufacil-solar_panel_calculator .tips li {
    margin-bottom: 5px;
    color: #333;
}

.calcufacil-solar_panel_calculator .find-loan-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.calcufacil-solar_panel_calculator .find-loan-btn:hover {
    opacity: 0.9;
}

.calcufacil-solar_panel_calculator .errors {
    color: #d63638;
}

.calcufacil-solar_panel_calculator .errors ul {
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
    .calcufacil-solar_panel_calculator.calcufacil-container {
        flex-direction: column;
        padding: 15px;
    }

    .calcufacil-solar_panel_calculator .calcufacil-left,
    .calcufacil-solar_panel_calculator .calcufacil-right {
        min-width: 100%;
    }
}