.finca-calc-container {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
}

.finca-calc-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.finca-calc-title {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    color: #333;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
}

.finca-calc-field {
    margin-bottom: 25px;
}

.finca-calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.finca-calc-label {
    font-weight: 500;
    color: #54595F;
}

.finca-calc-value {
    font-weight: bold;
    font-size: 18px;
}

.finca-calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #eef2f5;
    outline: none;
    margin: 10px 0;
}

.finca-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.finca-calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.finca-calc-days-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #eef2f5;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

.finca-calc-summary {
    background-color: #f9fbfd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.finca-calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #7A7A7A;
    font-size: 14px;
}

.finca-calc-row:last-child {
    margin-bottom: 0;
}

.finca-calc-divider {
    border: 0;
    border-top: 1px solid #eef2f5;
    margin: 12px 0;
}

.finca-calc-total-row {
    color: #333;
    font-size: 16px;
}

.finca-calc-total-amount {
    font-size: 20px;
}

.finca-calc-deposit {
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.finca-calc-deposit-title {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.finca-calc-deposit-text {
    margin: 0;
    color: #54595F;
}
