.mcc-calculator-wrap {
    max-width: 700px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.mcc-field {
    margin-bottom: 16px;
}

.mcc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.mcc-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.mcc-address-status {
    font-size: 12px;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 999px;
    background: #f0f0f1;
    color: #50575e;
    border: 1px solid #dcdcde;
}

.mcc-address-status.is-resolved {
    background: #edfaef;
    color: #1e6d2f;
    border-color: #9fd5a9;
}

.mcc-field textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
}

.mcc-address-suggestions {
    display: none;
    border: 1px solid #ddd;
    border-top: 0;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
}

.mcc-suggestion-item {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    padding: 8px 10px;
    cursor: pointer;
}

.mcc-suggestion-item:first-child {
    border-top: 0;
}

.mcc-suggestion-item:hover,
.mcc-suggestion-item:focus {
    background: #f6f7f7;
}

.mcc-btn {
    border: none;
    background: #2271b1;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.mcc-btn:hover {
    background: #1d5f91;
}

.mcc-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
    border: 1px solid #dcdcde;
}

.mcc-btn-secondary:hover {
    background: #e6e7e8;
}

.mcc-btn-secondary.is-active {
    background: #2271b1;
    color: #fff;
    border-color: #1d5f91;
}

.mcc-btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mcc-breakdown {
    margin-top: 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    background: #fafafa;
}

.mcc-breakdown-title {
    font-weight: 700;
    margin: 0 0 8px;
}

.mcc-breakdown p {
    margin: 0 0 8px;
}

.mcc-breakdown p:last-child {
    margin-bottom: 0;
}

.mcc-breakdown-total {
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
}

.mcc-result {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.mcc-error {
    color: #b32d2e;
    font-weight: 600;
}

.mcc-route-note {
    margin-top: 8px;
    color: #6b5d00;
    font-weight: 600;
}

.mcc-route-map-wrap {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.mcc-route-map-wrap h3 {
    margin: 0 0 8px;
}

.mcc-map-controls {
    display: flex;
    gap: 8px;
    margin: 0 0 10px;
}

.mcc-route-distance {
    margin: 0 0 10px;
}

.mcc-route-map {
    width: 100%;
    height: 320px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.mcc-route-actions {
    margin-top: 10px;
}

.mcc-route-map.is-large {
    height: 520px;
}

.mcc-route-map-wrap:fullscreen {
    background: #fff;
    padding: 16px;
    overflow: auto;
}

.mcc-route-map-wrap:fullscreen .mcc-route-map {
    height: calc(100vh - 180px);
}