.elementor-23927 .elementor-element.elementor-element-e999164{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-23927 .elementor-element.elementor-element-927e4d9{--spacer-size:5.7em;}.elementor-23927 .elementor-element.elementor-element-ea352a2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-c019076 *//* SCOPED CALCULATOR STYLES - Won't interfere with your site */
#rent-calculator-widget {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

#rent-calculator-widget * {
    box-sizing: border-box;
}

.rc-container {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: clamp(24px, 5vw, 48px);
}

.rc-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
    padding-bottom: clamp(24px, 4vw, 32px);
    border-bottom: 1px solid #d2d2d7;
}

.rc-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
}

.rc-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #86868b;
    margin: 0;
    font-weight: 400;
}

.rc-content {
    width: 100%;
}

.rc-input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 32px);
    margin-bottom: clamp(32px, 5vw, 48px);
}

.rc-input-section {
    background: #f5f5f7;
    padding: clamp(20px, 4vw, 32px);
    border-radius: 12px;
}

.rc-section-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 clamp(16px, 3vw, 24px) 0;
}

.rc-input-group {
    margin-bottom: clamp(16px, 3vw, 20px);
}

.rc-input-group:last-child {
    margin-bottom: 0;
}

.rc-input-group label {
    display: block;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.rc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.rc-input-prefix {
    position: absolute;
    left: 16px;
    font-size: clamp(14px, 2vw, 16px);
    color: #86868b;
    pointer-events: none;
    z-index: 2;
}

.rc-input-wrapper input[type="number"] {
    width: 100%;
    padding: 12px 16px 12px 36px;
    font-size: clamp(15px, 2vw, 17px);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    background: #ffffff;
    color: #1d1d1f;
    transition: all 0.3s ease;
}

.rc-input-wrapper input[type="number"]:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.rc-button-container {
    text-align: center;
    margin: clamp(32px, 5vw, 48px) 0;
}

.rc-calculate-btn {
    background: linear-gradient(180deg, #0071e3 0%, #005bb5 100%);
    color: #ffffff;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    padding: clamp(14px, 2.5vw, 18px) clamp(32px, 5vw, 48px);
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
}

.rc-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.4);
}

.rc-calculate-btn:active {
    transform: translateY(0);
}

.rc-calculate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rc-results {
    display: none;
}

.rc-results.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rc-break-even-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.rc-results-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 12px 0;
}

.rc-break-even-header p {
    font-size: clamp(15px, 2vw, 17px);
    color: #86868b;
    margin: 0;
}

.rc-break-even-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 3vw, 24px);
    margin-bottom: clamp(32px, 5vw, 48px);
}

.rc-card {
    background: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    padding: clamp(20px, 4vw, 32px);
    transition: all 0.3s ease;
}

.rc-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.rc-card-title {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: #86868b;
    margin-bottom: 12px;
}

.rc-card-value {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 20px;
}

.rc-breakdown {
    border-top: 1px solid #d2d2d7;
    padding-top: 16px;
}

.rc-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: clamp(13px, 2vw, 15px);
}

.rc-breakdown-item:last-child {
    margin-bottom: 0;
}

.rc-breakdown-label {
    color: #86868b;
}

.rc-breakdown-value {
    font-weight: 600;
    color: #1d1d1f;
}

.rc-chart-container {
    background: #f5f5f7;
    border-radius: 12px;
    padding: clamp(24px, 4vw, 32px);
    margin-bottom: clamp(24px, 4vw, 32px);
}

.rc-chart-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: clamp(16px, 3vw, 24px);
    text-align: center;
}

.rc-chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
}

.rc-chart-wrapper canvas {
    max-width: 100%;
    height: auto !important;
}

.rc-disclaimers {
    background: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    padding: clamp(20px, 4vw, 32px);
    margin-top: clamp(32px, 5vw, 48px);
}

.rc-details {
    margin-bottom: 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    overflow: hidden;
}

.rc-summary {
    padding: 16px;
    background: #f5f5f7;
    cursor: pointer;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: #1d1d1f;
    user-select: none;
    transition: background 0.2s ease;
    list-style: none;
}

.rc-summary::-webkit-details-marker {
    display: none;
}

.rc-summary:hover {
    background: #ebebed;
}

.rc-details[open] .rc-summary {
    border-bottom: 1px solid #d2d2d7;
}

.rc-details-content {
    padding: 20px;
    background: #ffffff;
}

.rc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #1d1d1f;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
}

.rc-list li {
    margin-bottom: 8px;
}

.rc-warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.rc-summary-warning {
    background: #fff3cd;
    color: #856404;
}

.rc-warning-content {
    background: #fff3cd;
}

.rc-list-warning {
    color: #856404;
}

.rc-usage-tip {
    margin-top: 20px;
    padding: 16px;
    background: #e3f2fd;
    border-left: 4px solid #0071e3;
    border-radius: 8px;
    font-size: clamp(13px, 2vw, 14px);
    color: #1d1d1f;
    line-height: 1.6;
}

/* Range slider styling */
#termSelector {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #d2d2d7;
    outline: none;
    cursor: pointer;
}

#termSelector::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0071e3;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 113, 227, 0.3);
    transition: all 0.3s ease;
}

#termSelector::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.5);
}

#termSelector::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0071e3;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 113, 227, 0.3);
}

#termSelector::-moz-range-track {
    background: #d2d2d7;
    border-radius: 5px;
    height: 6px;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #rent-calculator-widget {
        margin: 10px auto;
    }
    
    .rc-container {
        padding: 20px;
        border-radius: 8px;
    }
    
    .rc-input-grid {
        grid-template-columns: 1fr;
    }
    
    .rc-break-even-cards {
        grid-template-columns: 1fr;
    }
    
    .rc-chart-wrapper {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .rc-container {
        padding: 16px;
    }
    
    .rc-title {
        font-size: 24px;
    }
    
    .rc-subtitle {
        font-size: 14px;
    }
    
    .rc-card {
        padding: 16px;
    }
}/* End custom CSS */