.calcufacil-love_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;
    background: linear-gradient(135deg, #ffcc00 0%, #8e2de2 100%);
}

.calcufacil-love_calculator h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.calcufacil-love_calculator .calcufacil-left,
.calcufacil-love_calculator .calcufacil-right {
    flex: 1;
    min-width: 300px;
}

.calcufacil-love_calculator .calculator-form h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.calcufacil-love_calculator .input-group {
    margin-bottom: 20px;
}

.calcufacil-love_calculator label {
    display: block;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.calcufacil-love_calculator input[type="text"],
.calcufacil-love_calculator select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    box-sizing: border-box;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #333;
    transition: background 0.3s;
}

.calcufacil-love_calculator input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.4);
    outline: none;
}

.calcufacil-love_calculator button {
    background-color: #ff4444;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.calcufacil-love_calculator button:hover {
    background-color: #cc0000;
}

.calcufacil-love_calculator .results {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calcufacil-love_calculator .results-header {
    text-align: center;
    margin-bottom: 20px;
}

.calcufacil-love_calculator .monthly-payment {
    font-size: 36px;
    color: #ff4444;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.calcufacil-love_calculator .results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.calcufacil-love_calculator .breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s;
}

.calcufacil-love_calculator .breakdown-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.calcufacil-love_calculator .breakdown-item.total {
    background: rgba(255, 68, 68, 0.1);
    font-weight: bold;
}

.calcufacil-love_calculator .breakdown-item .info-icon {
    margin-left: 5px;
    color: #8e2de2;
    cursor: pointer;
}

.calcufacil-love_calculator .chart-container {
    margin-top: 20px;
    text-align: center;
}

.calcufacil-love_calculator .find-loan-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #8e2de2;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s;
}

.calcufacil-love_calculator .find-loan-btn:hover {
    background: #7000b3;
}

.calcufacil-love_calculator .errors {
    color: #ff4444;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.calcufacil-love_calculator .errors ul {
    list-style: none;
    padding: 0;
}

.calcufacil-love_calculator .errors li {
    margin-bottom: 5px;
}