
/* Minimal styling - inherits site fonts and colors */
.google-ads-radius-finder .radius-finder-container,
.google-ads-radius-finder-frontend .radius-finder-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.google-ads-radius-finder textarea,
.google-ads-radius-finder-frontend textarea {
    width: 95%;
    padding: 16px;
    font-size: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 24px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.google-ads-radius-finder textarea:focus,
.google-ads-radius-finder-frontend textarea:focus {
    border-color: #007bff;
}

.google-ads-radius-finder button,
.google-ads-radius-finder-frontend button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.google-ads-radius-finder-frontend button {
    background-color: #0073aa;
    color: white;
}

.google-ads-radius-finder-frontend button:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

.google-ads-radius-finder-frontend button:active {
    transform: translateY(0);
}

.google-ads-radius-finder #output,
.google-ads-radius-finder-frontend #output {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 500;
}

.google-ads-radius-finder #map,
.google-ads-radius-finder-frontend #map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.google-ads-radius-finder #progress-container,
.google-ads-radius-finder-frontend #progress-container {
    margin-top: 16px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    height: 20px;
    overflow: hidden;
    display: none;
}

.google-ads-radius-finder #progress-bar,
.google-ads-radius-finder-frontend #progress-bar {
    width: 0;
    height: 100%;
    background-color: #0073aa;
    text-align: center;
    line-height: 20px;
    color: white;
    border-radius: 8px;
    transition: width 0.3s;
}

.google-ads-radius-finder #progress-label,
.google-ads-radius-finder-frontend #progress-label {
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}

.google-ads-radius-finder .skipped,
.google-ads-radius-finder-frontend .skipped {
    color: #d63638;
}

.google-ads-radius-finder strong,
.google-ads-radius-finder-frontend strong {
    font-weight: 600;
}
