.tesla-calculator-container-bb9fb47b {
    padding: 40px;
    font-family: inherit;
    max-width: 800px;
    margin: 0 auto;
}
.tesla-calc-input-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Steps Layout */
.tesla-calc-step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}
.tesla-calc-step-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 2px;
    border-radius: 50%; /* Perfect circle */
}
.tesla-calc-field {
    flex-grow: 1;
}
.tesla-calc-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
}
.tesla-calc-helper {
    font-size: 14px;
    margin-bottom: 10px;
}
.tesla-calc-input-wrap {
    display: flex;
    align-items: center;
}
.tesla-calc-field input {
    width: 150px;
    padding: 12px 15px;
    border: 2px solid;
    font-size: 18px;
    font-weight: bold;
    font-family: inherit;
    background-color: transparent; /* Removed hardcoded white */
}
.tesla-calc-field input:focus,
.tesla-calc-field input:focus-visible {
    outline: none !important;
    /* Default border color is inherited, overridden by Elementor controls */
}
.tesla-calc-unit {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 500;
}

/* Button */
.tesla-calc-btn-bb9fb47b {
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
}

/* Result Section */
.tesla-calc-result-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 30px;
    gap: 20px;
}
.tesla-calc-summary-stat {
    flex: 1;
}
.tesla-calc-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.tesla-calc-stat-value {
    font-size: 32px;
    font-weight: bold;
}

.tesla-calc-recommendation-box {
    text-align: center;
    padding: 30px 20px;
    border-style: solid;
    border-width: 2px;
    margin-bottom: 40px;
}
.tesla-calc-rec-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 10px;
}
.tesla-calc-recommendation-name {
    font-size: 28px;
    margin: 0 0 5px 0;
}
.tesla-calc-rec-subinfo {
    font-size: 16px;
    margin-bottom: 25px;
}

.tesla-calc-added-box {
    padding: 20px;
    margin-bottom: 25px;
}
.tesla-calc-added-label {
    font-size: 16px;
    margin-bottom: 5px;
}
.tesla-calc-added-value {
    font-size: 42px;
    font-weight: bold;
}

.tesla-calc-explanation p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.tesla-calc-options-list {
    text-align: left;
    background: inherit;
    padding: 20px;
    margin-top: 20px;
}
.tesla-calc-option-item {
    margin-bottom: 15px;
}
.tesla-calc-option-item:last-child {
    margin-bottom: 0;
}
.tesla-calc-option-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}
.tesla-calc-option-item span {
    font-size: 15px;
}

/* CTAs */
.tesla-calc-cta-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.tesla-calc-cta-block {
    flex: 1;
    padding: 25px;
    text-align: center;
}
.tesla-calc-cta-block h5 {
    font-size: 18px;
    margin: 0 0 10px 0;
}
.tesla-calc-cta-block p {
    font-size: 15px;
    margin-bottom: 20px;
}
.tesla-calc-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: inherit;
    border-style: solid;
    border-width: 2px;
}
.tesla-calc-cta-btn.secondary {
    background: transparent;
}

/* Disclaimer & Reset */
.tesla-calc-disclaimer {
    font-size: 12px;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}
.tesla-calc-reset-btn {
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 767px) {
    .tesla-calc-result-header {
        flex-direction: column;
    }
    .tesla-calc-cta-section {
        flex-direction: column;
    }
    .tesla-calc-stat-value {
        font-size: 24px;
    }
    .tesla-calc-added-value {
        font-size: 32px;
    }
    .tesla-calc-recommendation-name {
        font-size: 22px;
    }
    .tesla-calc-field input {
        width: 100px;
    }
}