/**
 * Zipcode Auto-fill Button Styles
 */

.smf-zipcode-autofill-button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #960505;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.smf-zipcode-autofill-button:hover {
    background-color: #960505;
}

.smf-zipcode-autofill-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.smf-zipcode-autofill-button:focus {
    outline: 2px solid #960505;
    outline-offset: 2px;
}

.smf-text-control:has(.js-zipcode-autofill-button) {
    display: flex;
    gap: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .smf-zipcode-autofill-button {
        width: 100%;
        margin-top: 0.75rem;
    }
}
