.mrc-react-calculator.kijo-savings-goal-calculator .mrc-pill-input input[type="text"] {
    width: 100%;
}

.mrc-react-calculator.kijo-savings-goal-calculator .mrc-pill-input input[readonly] {
    opacity: 0.65;
    cursor: not-allowed;
}

.mrc-react-calculator.kijo-savings-goal-calculator input[type="range"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.kijo-sgc__tabs {
    margin: 0 0 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.kijo-sgc__tab:hover {
    background-color: var(--e-global-color-secondary);
    border-color: var(--e-global-color-secondary);
}

.kijo-sgc__tab.is-active {
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
}

.kijo-sgc__compare-row {
    opacity: 0.9;
}

.kijo-sgc__gap {
    font-family: var(--e-global-typography-text-font-family), Satoshi;
    font-size: var(--e-global-typography-text-font-size, 15px);
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
    font-style: var(--e-global-typography-text-font-style);
    text-decoration: var(--e-global-typography-text-text-decoration);
    line-height: var(--e-global-typography-text-line-height);
    display: none;
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
}

.kijo-sgc__gap--warn {
    background: var(--kijo-color-warning-bg);
    color: var(--kijo-color-warning);
}

.kijo-sgc__gap--ok {
    background: var(--kijo-color-success-bg);
    color: var(--kijo-color-success);
}

.kijo-sgc__progress,
.kijo-sgc__whatif {
    margin-top: 40px;
}

.kijo-sgc__progress .title,
.kijo-sgc__whatif .title {
    font-family: var(--e-global-typography-b7fd117-font-family), Satoshi;
    font-size: var(--e-global-typography-b7fd117-font-size);
    font-weight: var(--e-global-typography-b7fd117-font-weight);
    text-transform: var(--e-global-typography-b7fd117-text-transform);
    font-style: var(--e-global-typography-b7fd117-font-style);
    text-decoration: var(--e-global-typography-b7fd117-text-decoration);
    line-height: var(--e-global-typography-b7fd117-line-height);
    color: var(--e-global-color-text);
    margin: 0 0 16px;
    text-align: center;
}

.kijo-sgc__progress-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .kijo-sgc__progress-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.kijo-sgc__whatif-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .kijo-sgc__whatif-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

