.ev-calc-wrapper {
    font-family: system-ui, -apple-system, sans-serif;
    padding: 24px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.ev-calc-row {
    margin-bottom: 20px;
}
.ev-calc-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ev-calc-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}
.ev-calc-sublabel {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}
/* Fixed field height to prevent text truncation as seen in screenshot */
.ev-calc-input, .ev-calc-select {
    padding: 12px 16px !important;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    color: #000;
    width: 100%;
    height: 52px !important;
    min-height: 52px !important;
    line-height: 26px !important;
    box-sizing: border-box !important;
}
.ev-calc-btn {
    width: 100%;
    height: 54px !important;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    margin-top: 10px;
    color: #000;
    line-height: 54px !important;
    box-sizing: border-box !important;
}
.ev-calc-results-box {
    margin-top: 30px;
    border: 2px solid;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ev-calc-result-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}
.ev-calc-result-val {
    font-weight: bold;
}
.ev-calc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 4px 0;
}
.total-row {
    font-size: 18px;
}
.ev-calc-action {
    margin-top: 15px;
    text-align: center;
}
.ev-calc-action-btn {
    display: inline-block;
    background: #fff;
    color: #000 !important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.2s;
}
.ev-calc-action-btn:hover {
    opacity: 0.9;
}
.ev-calc-disclaimer {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 20px;
    line-height: 1.5;
    text-align: center;
}
